Changeset 1616


Ignore:
Timestamp:
Nov 6, 2004, 9:41:46 AM (21 years ago)
Author:
bird
Message:

signals are finally getting somewhere...

Location:
trunk/src/emx/src/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/libc.def

    • Property cvs2svn:cvs-rev changed from 1.73 to 1.74
    r1615 r1616  
    12301230    "__std_sigwait" @1252
    12311231    "__std_sigwaitinfo" @1253
    1232     "_gpSigQueueHead" @1254
    1233     "_gpSigQueueTail" @1255
     1232    "___libc_Back_signalVerifyPGrp" @1254
     1233    "___libc_Back_signalVerifyPid" @1255
    12341234    "___libc_Back_signalRaise" @1256
    12351235    "___libc_Back_signalSendPGrp" @1257
    12361236    "___libc_Back_signalSendPid" @1258
    1237     "___libc_Back_signalVerifyPGrp" @1259
    1238     "___libc_Back_signalVerifyPid" @1260
  • trunk/src/emx/src/lib/sys/signals.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r1615 r1616  
    376376 * All access to this set is protected by the signal semaphore.
    377377 */
    378 PSIGQUEUED          gpSigQueueHead = NULL;
     378static PSIGQUEUED   gpSigQueueHead = NULL;
    379379/** Tail of the queue of pending signals.
    380380 * All access to this set is protected by the signal semaphore.
    381381 */
    382 PSIGQUEUED          gpSigQueueTail = NULL;
     382static PSIGQUEUED   gpSigQueueTail = NULL;
    383383
    384384/** Array of statically allocated queued signals. */
Note: See TracChangeset for help on using the changeset viewer.