tech-userlevel archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[PATCH 3/6] apply proper value for _POSIX_JOB_CONTROL



The _POSIX_JOB_CONTROL shoud be great than zero always as required by SUSv3.
---
 sys/sys/unistd.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sys/sys/unistd.h b/sys/sys/unistd.h
index 1ee3e26..c294976 100644
--- a/sys/sys/unistd.h
+++ b/sys/sys/unistd.h
@@ -37,7 +37,7 @@
 #include <sys/featuretest.h>
 
 /* compile-time symbolic constants */
-#define        _POSIX_JOB_CONTROL      /* implementation supports job control 
*/
+#define        _POSIX_JOB_CONTROL      1 /* implementation supports job 
control */
 
 /*
  * According to POSIX 1003.1:
-- 
1.5.2.5



Home | Main Index | Thread Index | Old Index