Changeset 1574 for trunk/src/emx/include/InnoTekLIBC/backend.h
- Timestamp:
- Oct 10, 2004, 1:07:40 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/backend.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r1573 r1574 48 48 * Initiatlize a new thread structure. 49 49 * 50 * @param pThrd Pointer to the thread structure. 51 */ 52 void __libc_Back_threadInit(__LIBC_PTHREAD pThrd); 50 * @param pThrd Pointer to the thread structure. 51 * @param pParentThrd Pointer to the thread structure for the parent thread. 52 * If NULL and thread id is 1 then inherit from parent process. 53 * If NULL and thread is not null or no record of parent then 54 * use defaults. 55 */ 56 void __libc_Back_threadInit(__LIBC_PTHREAD pThrd, const __LIBC_PTHREAD pParentThrd); 53 57 54 58 /** … … 401 405 /** @} */ 402 406 407 408 /** @defgroup __libc_Back_Signals LIBC Backend - Signals and Exceptions 409 * @{ */ 410 411 #if defined(END_OF_CHAIN) && defined(INCL_DOSEXCEPTIONS) 412 /** 413 * The LIBC Sys Backend exception handler. 414 * 415 * @returns XCPT_CONTINUE_SEARCH or XCPT_CONTINUE_EXECUTION. 416 * @param pXcptRepRec Report record. 417 * @param pXcptRegRec Registration record. 418 * @param pCtx Context record. 419 * @param pvWhatEver Not quite sure what this is... 420 */ 421 ULONG _System __libc_Back_exceptionHandler(PEXCEPTIONREPORTRECORD pXcptRepRec, 422 PEXCEPTIONREGISTRATIONRECORD pXcptRegRec, 423 PCONTEXTRECORD pCtx, 424 PVOID pvWhatEver); 425 #endif 426 427 /** @} */ 428 403 429 __END_DECLS 404 430 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.