summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch03.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 16:31:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 16:31:11 +0000
commit0874502b511202a5d7a5befb1a0b9b5d8bf73550 (patch)
tree42c06e6c1e1d361367f243fc04301cf399e848d4 /doc/posix1003.1/ch03.t
parentOutline complete and apparently correct. (diff)
downloadrtems-0874502b511202a5d7a5befb1a0b9b5d8bf73550.tar.bz2
Added functions from POSIX standard.
Diffstat (limited to 'doc/posix1003.1/ch03.t')
-rw-r--r--doc/posix1003.1/ch03.t103
1 files changed, 103 insertions, 0 deletions
diff --git a/doc/posix1003.1/ch03.t b/doc/posix1003.1/ch03.t
index 4055267a5d..0ed0e3dea9 100644
--- a/doc/posix1003.1/ch03.t
+++ b/doc/posix1003.1/ch03.t
@@ -7,26 +7,129 @@
@c
@chapter Process Primitives
+
@section Process Creation and Execution
+
@subsection Process Creation
+
+@example
+fork(), Unimplementable
+@end example
+
+
@subsection Execute a File
+
+@example
+execl(), Unimplementable
+execv(), Unimplementable
+execle(), Unimplementable
+execve(), Unimplementable
+execlp(), Unimplementable
+execvp(), Unimplementable
+@end example
+
@subsection Register Fork Handlers
+
+@example
+pthread_atfork(), Implemented
+@end example
+
@section Process Termination
+
@subsection Wait for Process Termination
+
+@example
+wait(), Implemented
+waitpid(), Implemented
+@end example
+
@subsection Terminate a Process
+
+@example
+_exit(), Implemented
+@end example
+
@section Signals
+
@subsection Signal Concepts
+
@subsection Send a Signal to a Process
+
+@example
+kill(), Implemented
+@end example
+
@subsection Manipulate Signal Sets
+
+@example
+sigemptyset(), Implemented
+sigfillset(), Implemented
+sigaddset(), Implemented
+sigdelset(), Implemented
+sigismember(), Implemented
+@end example
+
@subsection Examine and Change Signal Action
+
+@example
+sigaction(), Implemented
+@end example
+
@subsection Examine and Change Blocked Signals
+
+@example
+pthread_sigmask(), Implemented
+sigprocmask(), Implemented
+@end example
+
@subsection Examine Pending Signals
+
+@example
+sigpending(), Implemented
+@end example
+
@subsection Wait for a Signal
+
+@example
+sigsuspend(), Implemented
+@end example
+
@subsection Synchronously Accept a Signal
+
+@example
+sigwait(), Implemented
+sigwaitinfo(), Implemented
+sigtimedwait(), Implemented
+@end example
+
@subsection Queue a Signal to a Process
+
+@example
+sigqueue(), Implemented
+@end example
+
@subsection Send a Signal to a Thread
+
+@example
+pthread_kill(), Implemented
+@end example
+
@section Timer Operations
+
@subsection Schedule Alarm
+
+@example
+alarm(), Implemented
+@end example
+
@subsection Suspend Process Execution
+
+@example
+pause(), Implemented
+@end example
+
@subsection Delay Process Execution
+@example
+sleep(), Implemented
+@end example