summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch03.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-18 18:15:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-18 18:15:01 +0000
commit7331714cf96cef835dd5bfd2ab29961cccdd1899 (patch)
tree05f93fdbf927996c6a4b4af201cd0b311d105805 /doc/posix1003.1/ch03.t
parentFirst attempt at adding constants and feature flags (diff)
downloadrtems-7331714cf96cef835dd5bfd2ab29961cccdd1899.tar.bz2
Added Constants, Feature Flags, and Macros (included in Functions).
No status information was included.
Diffstat (limited to 'doc/posix1003.1/ch03.t')
-rw-r--r--doc/posix1003.1/ch03.t57
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/posix1003.1/ch03.t b/doc/posix1003.1/ch03.t
index 9a573c4a74..b48f5818b3 100644
--- a/doc/posix1003.1/ch03.t
+++ b/doc/posix1003.1/ch03.t
@@ -41,6 +41,14 @@ pthread_atfork(), Function, Unimplementable, Requires Processes
@example
wait(), Function, Unimplementable, Requires Processes
waitpid(), Function, Unimplementable, Requires Processes
+WNOHANG, Constant, Unimplementable, Requires Processes
+WUNTRACED, Constant, Unimplementable, Requires Processes
+WIFEXITED(), Function, Unimplementable, Requires Processes
+WEXITSTATUS(), Function, Unimplementable, Requires Processes
+WIFSIGNALED(), Function, Unimplementable, Requires Processes
+WTERMSIG(), Function, Unimplementable, Requires Processes
+WIFSTOPPED(), Function, Unimplementable, Requires Processes
+WSTOPSIG(), Function, Unimplementable, Requires Processes
@end example
@subsection Terminate a Process
@@ -53,11 +61,55 @@ _exit(), Function, Unimplemented
@subsection Signal Concepts
+@subsubsection Signal Names
+
@example
sigset_t, Type, Implemented
+SIG_DFL, Constant,
+SIG_IGN, Constant,
+SIGABRT, Constant,
+SIGALRM, Constant,
+SIGFPE, Constant,
+SIGHUP, Constant,
+SIGILL, Constant,
+SIGINT, Constant,
+SIGKILL, Constant,
+SIGPIPE, Constant,
+SIGQUIT, Constant,
+SIGSEGV, Constant,
+SIGTERM, Constant,
+SIGUSR1, Constant,
+SIGUSR2, Constant,
+SIGCHLD, Constant,
+SIGCONT, Constant,
+SIGSTOP, Constant,
+SIGTSTP, Constant,
+SIGTTIN, Constant,
+SIGTTOU, Constant,
+SIGBUS, Constant,
+SIGRTMIN, Constant,
+SIGRTMAX, Constant,
+@end example
+
+@subsubsection Signal Generation and Delivery
+
+@example
struct sigevent, Type, Implemented
union sigval, Type, Implemented
+SIGEV_NONE, Constant,
+SIGEV_SIGNAL, Constant,
+SIGEV_THREAD, Constant,
+@end example
+
+@subsubsection Signal Actions
+
+@example
siginfo_t, Type, Implemented
+SI_USER, Constant,
+SI_QUEUE, Constant,
+SI_TIMER, Constant,
+SI_ASYNCIO, Constant,
+SI_MESGQ, Constant,
@end example
@subsection Send a Signal to a Process
@@ -81,6 +133,8 @@ sigismember(), Function, Implemented
@example
sigaction(), Function, Implemented
sigaction, Type, Implemented
+SA_NOCLDSTOP, Constant,
+SA_SIGINFO, Constant,
@end example
@subsection Examine and Change Blocked Signals
@@ -88,6 +142,9 @@ sigaction, Type, Implemented
@example
pthread_sigmask(), Function, Implemented
sigprocmask(), Function, Implemented
+SIG_BLOCK, Constant,
+SIG_UNBLOCK, Constant,
+SIG_SETMASK, Constant,
@end example
@subsection Examine Pending Signals