Changes between Version 106 and Version 107 of library_stdio


Ignore:
Timestamp:
Sep 15, 2015, 12:25:43 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v106 v107  
    6262Return -2  if ptr not NULL
    6363
    64  === 4) int '''giet_thread_kill'''( pthread_id trdid , int signal ) ===
     64 === 4) int '''giet_pthread_kill'''( pthread_id trdid , int signal ) ===
    6565This function deactivates the thread identified by the ''trdid'' argument when the ''signal'' argument is non zero.
    6666If the ''signal'' argument is zero, the thread existence is checked, but it is not deactivated.
     
    7070Return -1 if no matching thread.
    7171
    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'''() ===
    7773The thread calling this function is descheduled and the processor is allocated to another thread.
    7874No error possible.
     75
     76 === 6) void '''giet_pthread_assert'''( unsigned int condition, char* string ) ===
     77This 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.
     80No error possible.
     81
     82
    7983
    8084 == __Application related system calls__ ==