Ignore:
Timestamp:
Oct 10, 2004, 1:07:40 PM (21 years ago)
Author:
bird
Message:

Signal changes - enabled by NEW_SIGNALS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/InnoTekLIBC/backend.h

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r1573 r1574  
    4848 * Initiatlize a new thread structure.
    4949 *
    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 */
     56void __libc_Back_threadInit(__LIBC_PTHREAD pThrd, const __LIBC_PTHREAD pParentThrd);
    5357
    5458/**
     
    401405/** @} */
    402406
     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 */
     421ULONG _System __libc_Back_exceptionHandler(PEXCEPTIONREPORTRECORD       pXcptRepRec,
     422                                           PEXCEPTIONREGISTRATIONRECORD pXcptRegRec,
     423                                           PCONTEXTRECORD               pCtx,
     424                                           PVOID                        pvWhatEver);
     425#endif
     426
     427/** @} */
     428
    403429__END_DECLS
    404430
Note: See TracChangeset for help on using the changeset viewer.