Ignore:
Timestamp:
Nov 8, 2004, 2:06:04 AM (21 years ago)
Author:
bird
Message:

Updated some headers to 5.2/3 level.

Location:
trunk/src/emx/include/InnoTekLIBC
Files:
2 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.10 to 1.11
    r1623 r1624  
    500500
    501501/**
    502  * Worker called after __libc_Back_signalRaise() was called with a
    503  * preallocated signal queue entry. This function will make sure
    504  * we're not ending up with too many heap allocated packets in the
    505  * free list.
    506  */
    507 void __libc_Back_signalFreeWorker(void);
     502 * Queue a signal.
     503 *
     504 * @returns 0 on success.
     505 * @returns -1 on failure, errno set.
     506 * @param   pid             The target process id.
     507 * @param   iSignalNo       Signal to queue.
     508 * @param   SigVal          The value to associate with the signal.
     509 */
     510int __libc_Back_signalQueue(pid_t pid, int iSignalNo, const union sigval SigVal);
    508511
    509512/**
  • trunk/src/emx/include/InnoTekLIBC/sharedpm.h

    • Property cvs2svn:cvs-rev changed from 1.13 to 1.14
    r1623 r1624  
    108108} __LIBC_EXIT_REASON;
    109109
    110 
    111 /** The maximum number of signals a process can have pending on other processes concurrently. */
    112 #define __LIBC_SPM_SIGNALS_MAX_SENT 48
    113110
    114111/**
     
    284281    volatile __LIBC_PSPMSIGNAL  pSigHead;
    285282    /** Number of signals send.
    286      * After __LIBC_SPM_SIGNALS_MAX_SENT signals only SIGCHLD will be allowed sent.
     283     * After _POSIX_SIGQUEUE_MAX signals only SIGCHLD will be allowed sent.
    287284     */
    288285    volatile unsigned           cSigsSent;
     
    295292
    296293    /** Reserved pool pointer field with default value 0. */
    297     unsigned                    aReserved[40 - 16];
     294    unsigned                    aReserved[40 - 17];
    298295
    299296    /** Number of possible pointers to shared memory starting at pvInherit.
Note: See TracChangeset for help on using the changeset viewer.