aboutsummaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-09-17 21:30:58 +0000
committerChristopher Faylor <me@cgf.cx>2001-09-17 21:30:58 +0000
commitd2d5eb41e4cd3612d66c1819fded53dc9d97ed7d (patch)
tree5a72bcfb6e78c30a794efdef4508bf74ca091fd7 /newlib
parentc98b577d40b31f6cab2344b49616b5680f72776d (diff)
downloadnewlib-d2d5eb41e4cd3612d66c1819fded53dc9d97ed7d.zip
newlib-d2d5eb41e4cd3612d66c1819fded53dc9d97ed7d.tar.gz
newlib-d2d5eb41e4cd3612d66c1819fded53dc9d97ed7d.tar.bz2
* libc/include/process.h: Add getpid() declaration.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/include/process.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 759459f..71856f5 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+Mon Sep 17 17:29:47 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * libc/include/process.h: Add getpid() declaration.
+
2001-09-14 Nick Clifton <nickc@cambridge.redhat.com>
* libc/sys/arm/crt0.S: Add calls to _init and _fini (via atexit)
diff --git a/newlib/libc/include/process.h b/newlib/libc/include/process.h
index 49560e2..4f6fe40 100644
--- a/newlib/libc/include/process.h
+++ b/newlib/libc/include/process.h
@@ -41,6 +41,7 @@ pid_t sexecv(void *, const char *path, const char * const *argv);
pid_t sexecve(void *, const char *path, const char * const *argv, const char * const *envp);
pid_t sexecvp(void *, const char *path, const char * const *argv);
pid_t sexecvpe(void *, const char *path, const char * const *argv, const char * const *envp);
+pid_t getpid(void);
#endif
int cwait(int *, int, int);