Changes between Version 106 and Version 107 of library_stdio
- Timestamp:
- Sep 15, 2015, 12:25:43 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v106 v107 62 62 Return -2 if ptr not NULL 63 63 64 === 4) int '''giet_ thread_kill'''( pthread_id trdid , int signal ) ===64 === 4) int '''giet_pthread_kill'''( pthread_id trdid , int signal ) === 65 65 This function deactivates the thread identified by the ''trdid'' argument when the ''signal'' argument is non zero. 66 66 If the ''signal'' argument is zero, the thread existence is checked, but it is not deactivated. … … 70 70 Return -1 if no matching thread. 71 71 72 === 5) void '''giet_assert'''( unsigned int condition, char* string ) === 73 This function stops execution of the calling with a TTY0 message if the condition is false. 74 No error possible. 75 76 === 6) void '''giet_context_switch'''() === 72 === 5) void '''giet_pthreadt_yield'''() === 77 73 The thread calling this function is descheduled and the processor is allocated to another thread. 78 74 No error possible. 75 76 === 6) void '''giet_pthread_assert'''( unsigned int condition, char* string ) === 77 This non standard function stops execution of the calling thread with a TTY0 message if the condition is 0. 78 * condition : thread exit if condition value is 0. 79 * string : message displayed on TTY0. 80 No error possible. 81 82 79 83 80 84 == __Application related system calls__ ==