Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/signal.h

    r4cf8ca6 r3f466c33  
    3030 * @{
    3131 */
    32 /** @file Signal handling.
     32/** @file
    3333 */
    3434
    3535#ifndef POSIX_SIGNAL_H_
    3636#define POSIX_SIGNAL_H_
    37 
    38 // TODO: documentation
    3937
    4038#include "libc/errno.h"
     
    109107        posix_mcontext_t uc_mcontext;
    110108} posix_ucontext_t;
     109
    111110
    112111/* Values of posix_sigevent::sigev_notify */
     
    155154#define SIGSTKSZ 0
    156155
    157 /* Full POSIX set */
     156/* full POSIX set */
    158157enum {
    159158        /* Termination Signals */
     
    215214
    216215/* Values for sigaction field si_code. */
     216
    217217enum {
    218218        SI_USER,
     
    287287                #define sigevent posix_sigevent
    288288        #endif
     289        #define sigaction posix_sigaction
    289290        #define mcontext_t posix_mcontext_t
    290291        #define ucontext_t posix_ucontext_t
    291292        #define stack_t posix_stack_t
    292293        #define siginfo_t posix_siginfo_t
    293 
    294         #define sigaction posix_sigaction
    295294
    296295        #define signal posix_signal
Note: See TracChangeset for help on using the changeset viewer.