Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Process module overview #30

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[WIP] Process module overview
Add existing functions.

TODO:

* Module introduction
* Usage
* Clean up function list
* Only show moderate to heavy use functions with their use-case
  • Loading branch information
Zachary Scott committed Feb 13, 2014
commit ef1cf2f50f369b9e1aad2758af984eb052d166b4
56 changes: 56 additions & 0 deletions process.c
Original file line number Diff line number Diff line change
Expand Up @@ -7315,6 +7315,62 @@ VALUE rb_mProcID_Syscall;
/*
* The <code>Process</code> module is a collection of methods used to
* manipulate processes.
*
* == functions
*
* Clock functions
* ::clock_getres
* ::clock_gettime
* ::times
*
* Process initialization functions
* ::exec
* ::fork
* ::spawn
*
* Process termination functions
* ::abort
* ::exit
* ::exit!
* ::kill
*
* Process attribute management functions
* ::egid
* ::egid=
* ::euid
* ::euid=
* ::getpgid
* ::getpgrp
* ::getpriority
* ::getrlimit
* ::getsid
* ::pid
* ::ppid
* ::setpriority
* ::setrlimit
* ::setsid
* ::uid
* ::uid=
*
* Process group management functions
* ::gid
* ::gid=
* ::groups
* ::groups=
* ::initgroups
* ::maxgroups
* ::maxgroups=
* ::setpgid
* ::setpgrp
*
* ::daemon
* ::detach
* ::wait
* ::wait2
* ::waitall
* ::waitpid
* ::waitpid2
*
*/

void
Expand Down