Ignore:
Timestamp:
May 10, 2006 7:24:40 PM (18 years ago)
Author:
bennylp
Message:

Merge-in RTEMS port patch by Phil Torre <ptorre@…>, alpha release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/os.h

    r228 r433  
    5858} pj_thread_create_flags; 
    5959 
    60  
    61 /** 
    62  * Specify this as \a stack_size argument in #pj_thread_create() to specify 
    63  * that thread should use default stack size for the current platform. 
    64  */ 
    65 #define PJ_THREAD_DEFAULT_STACK_SIZE    0 
    6660 
    6761/** 
     
    162156 
    163157/** 
    164  * Join thread. 
    165  * This function will block the caller thread until the specified thread exits. 
     158 * Join thread, and block the caller thread until the specified thread exits. 
     159 * If the specified thread has already been dead, or it does not exist, 
     160 * the function will return immediately with successfull status. 
    166161 * 
    167162 * @param thread    The thread handle. 
    168163 * 
    169  * @return zero on success. 
     164 * @return PJ_SUCCESS on success. 
    170165 */ 
    171166PJ_DECL(pj_status_t) pj_thread_join(pj_thread_t *thread); 
Note: See TracChangeset for help on using the changeset viewer.