summaryrefslogtreecommitdiffstats
path: root/doc/posix_users/process.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 21:56:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 21:56:45 +0000
commitd2bfbaf2b170c77c8331dd2e080e765d6430081e (patch)
tree308f51506c95a12e1faf43f5bfef36a13748f587 /doc/posix_users/process.t
parentChanged name of document generated. (diff)
downloadrtems-d2bfbaf2b170c77c8331dd2e080e765d6430081e.tar.bz2
Fixed spacing.
Diffstat (limited to 'doc/posix_users/process.t')
-rw-r--r--doc/posix_users/process.t52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/posix_users/process.t b/doc/posix_users/process.t
index 719fffa536..fb81c01d49 100644
--- a/doc/posix_users/process.t
+++ b/doc/posix_users/process.t
@@ -95,9 +95,9 @@ NONE
@ifset is-C
@example
int execl(
-const char *path,
-const char *arg,
-...
+ const char *path,
+ const char *arg,
+ ...
);
@end example
@end ifset
@@ -135,9 +135,9 @@ NONE
@ifset is-C
@example
int execv(
-const char *path,
-char const *argv[],
-...
+ const char *path,
+ char const *argv[],
+ ...
);
@end example
@end ifset
@@ -175,9 +175,9 @@ NONE
@ifset is-C
@example
int execle(
-const char *path,
-const char *arg,
-...
+ const char *path,
+ const char *arg,
+ ...
);
@end example
@end ifset
@@ -215,9 +215,9 @@ NONE
@ifset is-C
@example
int execve(
-const char *path,
-char *const argv[],
-char *const envp[]
+ const char *path,
+ char *const argv[],
+ char *const envp[]
);
@end example
@end ifset
@@ -255,9 +255,9 @@ NONE
@ifset is-C
@example
int execlp(
-const char *file,
-const char *arg,
-...
+ const char *file,
+ const char *arg,
+ ...
);
@end example
@end ifset
@@ -295,9 +295,9 @@ NONE
@ifset is-C
@example
int execvp(
-const char *file,
-char *const argv[]
-...
+ const char *file,
+ char *const argv[]
+ ...
);
@end example
@end ifset
@@ -337,9 +337,9 @@ NONE
#include <sys/types.h>
int pthread_atfork(
-void (*prepare)(void),
-void (*parent)(void),
-void (*child)(void)
+ void (*prepare)(void),
+ void (*parent)(void),
+ void (*child)(void)
);
@end example
@end ifset
@@ -380,7 +380,7 @@ NONE
#include <sys/wait.h>
int wait(
-int *stat_loc
+ int *stat_loc
);
@end example
@end ifset
@@ -418,9 +418,9 @@ NONE
@ifset is-C
@example
int wait(
-pid_t pid,
-int *stat_loc,
-int options
+ pid_t pid,
+ int *stat_loc,
+ int options
);
@end example
@end ifset
@@ -458,7 +458,7 @@ NONE
@ifset is-C
@example
void _exit(
-int status
+ int status
);
@end example
@end ifset