Changeset f42b726 in rtems
- Timestamp:
- 01/24/01 14:17:28 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b00b6a7
- Parents:
- 5c26b28b
- Files:
-
- 490 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/itron/ChangeLog
r5c26b28b rf42b726 1 2001-01-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add src/config.h 4 * src/Makefile.am: Add INCLUDES += -I. to pickup config.h 5 * src/.cvsignore: Add config.h and stamp-h 6 * src/*.c: Add config.h support. 7 1 8 2000-12-01 Joel Sherrill <joel@OARcorp.com> 2 9 -
c/src/exec/itron/configure.in
r5c26b28b rf42b726 40 40 RTEMS_CHECK_NEWLIB 41 41 42 AM_CONFIG_HEADER(src/config.h) 43 42 44 ## 43 45 ## FIXME: We configure and build the macros subdirectory, too. -
c/src/exec/itron/src/.cvsignore
r5c26b28b rf42b726 1 1 Makefile 2 2 Makefile.in 3 stamp-h 4 stamp-h.in 5 config.h 6 config.h.in -
c/src/exec/itron/src/Makefile.am
r5c26b28b rf42b726 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 7 INCLUDES += -I. 6 8 7 9 TASK_C_FILES = task.c cre_tsk.c del_tsk.c sta_tsk.c ext_tsk.c exd_tsk.c \ -
c/src/exec/itron/src/can_wup.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/chg_pri.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/cre_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/cre_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/cre_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/cre_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/del_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/del_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/del_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/del_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/dis_dsp.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/ena_dsp.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/eventflags.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/exd_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/ext_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/fmempool.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/frsm_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/get_tid.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/itronintr.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/itronsem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/itrontime.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/mbox.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/mboxtranslatereturncode.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/msgbuffer.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/msgbuffertranslatereturncode.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/network.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/port.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/prcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/prcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/preq_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/psnd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/rcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/rcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/ref_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/ref_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/ref_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/ref_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/rel_wai.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/rot_rdq.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/rsm_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/sig_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/slp_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/snd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/snd_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/sta_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/sus_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <limits.h> -
c/src/exec/itron/src/sysmgmt.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/task.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/ter_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/trcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/trcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/tslp_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/tsnd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
c/src/exec/itron/src/twai_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/vmempool.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/wai_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/itron/src/wup_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
c/src/exec/libcsupport/src/utsname.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdio.h> -
c/src/exec/posix/ChangeLog
r5c26b28b rf42b726 1 2001-01-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add src/config.h 4 * src/Makefile.am: Add INCLUDES += -I. to pickup config.h 5 * src/.cvsignore: Add config.h and stamp-h 6 * src/*.c: Add config.h support. 7 1 8 2001-01-23 Joel Sherrill <joel@OARcorp.com> 2 9 -
c/src/exec/posix/configure.in
r5c26b28b rf42b726 47 47 fi 48 48 49 AM_CONFIG_HEADER(src/config.h) 50 49 51 # Explicitly list all Makefiles here 50 52 AC_OUTPUT( -
c/src/exec/posix/src/.cvsignore
r5c26b28b rf42b726 1 1 Makefile 2 2 Makefile.in 3 stamp-h 4 stamp-h.in 5 config.h 6 config.h.in -
c/src/exec/posix/src/Makefile.am
r5c26b28b rf42b726 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 7 INCLUDES += -I. 6 8 7 9 # following are semi-implemented and untested -
c/src/exec/posix/src/adasupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/aio.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <aio.h> -
c/src/exec/posix/src/alarm.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/cancel.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/cancelrun.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/cleanuppop.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/cleanuppush.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/clockgetcpuclockid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/clockgetenableattr.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/clockgetres.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/clockgettime.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/clocksetenableattr.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/clocksettime.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/cond.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condattrdestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condattrgetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condattrinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condattrsetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condbroadcast.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/conddefaultattributes.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/conddestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condmp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condsignal.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condsignalsupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condtimedwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/condwaitsupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/devctl.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <devctl.h> -
c/src/exec/posix/src/execl.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/execle.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/execlp.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/execv.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/execve.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/execvp.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
c/src/exec/posix/src/fork.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
c/src/exec/posix/src/getegid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/geteuid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getgid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getgroups.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getlogin.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getpgrp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getpid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getppid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/getuid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/intr.c
r5c26b28b rf42b726 8 8 * $Id$ 9 9 */ 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 10 14 11 15 #include <errno.h> -
c/src/exec/posix/src/key.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/keycreate.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/keydelete.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/keygetspecific.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/keyrundestructors.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/keysetspecific.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <errno.h> -
c/src/exec/posix/src/kill.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/killinfo.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/mqueue.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueueclose.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuecreatesupp.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuedeletesupp.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuegetattr.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuenametoid.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuenotify.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueueopen.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuereceive.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuerecvsupp.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuesend.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuesendsupp.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuesetattr.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuetimedreceive.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuetimedsend.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mqueuetranslatereturncode.c
r5c26b28b rf42b726 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #include <pthread.h> -
c/src/exec/posix/src/mqueueunlink.c
r5c26b28b rf42b726 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <stdarg.h> -
c/src/exec/posix/src/mutex.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrdestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrgetprioceiling.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrgetprotocol.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrgetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrsetprioceiling.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrsetprotocol.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexattrsetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexdefaultattributes.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexdestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexfromcorestatus.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexgetprioceiling.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexlock.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexlocksupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexmp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexsetprioceiling.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutextimedlock.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutextrylock.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/mutexunlock.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/nanosleep.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/pause.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/posixintervaltotimespec.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/posixtimespecsubtract.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/posixtimespectointerval.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignal.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignalchecksignal.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignalclearprocesssignals.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignalclearsignals.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignalsetprocesssignals.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/psignalunblockthread.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/pthread.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/pthreadatfork.c
r5c26b28b rf42b726 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <sys/types.h> 17 21 #include <errno.h> -
c/src/exec/posix/src/pthreadattrdestroy.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetdetachstate.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetinheritsched.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetschedparam.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetschedpolicy.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetscope.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetstackaddr.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrgetstacksize.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrinit.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetdetachstate.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetinheritsched.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetschedparam.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetschedpolicy.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetscope.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetstackaddr.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadattrsetstacksize.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadcreate.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreaddetach.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadequal.c
r5c26b28b rf42b726 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <pthread.h> -
c/src/exec/posix/src/pthreadexit.c
r5c26b28b rf42b726 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 16 19 17 20 #include <pthread.h> -
c/src/exec/posix/src/pthreadgetcpuclockid.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadgetcputime.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadgetschedparam.c
r5c26b28b rf42b726 13 13 */ 14 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 15 18 16 19 #include <pthread.h> -
c/src/exec/posix/src/pthreadjoin.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadkill.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadonce.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadself.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadsetcputime.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <pthread.h> -
c/src/exec/posix/src/pthreadsetschedparam.c
r5c26b28b rf42b726 13 13 */ 14 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 15 18 16 19 #include <pthread.h> -
c/src/exec/posix/src/pthreadsigmask.c
r5c26b28b rf42b726 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 16 19 17 20 #include <pthread.h> -
c/src/exec/posix/src/ptimer.c
r5c26b28b rf42b726 2 2 * ptimer.c,v 1.1 1996/06/03 16:29:58 joel Exp 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/ptimer1.c
r5c26b28b rf42b726 2 2 * ptimer.c,v 1.1 1996/06/03 16:29:58 joel Exp 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/sched.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/semaphore.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semaphorecreatesupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semaphoredeletesupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semaphoremp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semaphorenametoid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semaphorewaitsupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semclose.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semdestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semgetvalue.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/seminit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semopen.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/sempost.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semtimedwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semtrywait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semunlink.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/semwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdarg.h> -
c/src/exec/posix/src/setcancelstate.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/setcanceltype.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/setpgid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/setsid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
c/src/exec/posix/src/sigaction.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigaddset.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigdelset.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigemptyset.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigfillset.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigismember.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/signal_2.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <signal.h> -
c/src/exec/posix/src/sigpending.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <signal.h> -
c/src/exec/posix/src/sigprocmask.c
r5c26b28b rf42b726 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 16 19 17 20 #include <pthread.h> -
c/src/exec/posix/src/sigqueue.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigsuspend.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <signal.h> -
c/src/exec/posix/src/sigtimedwait.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
c/src/exec/posix/src/sigwait.c
r5c26b28b rf42b726 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 16 19 17 20 #include <pthread.h> -
c/src/exec/posix/src/sigwaitinfo.c
r5c26b28b rf42b726 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <signal.h> -
c/src/exec/posix/src/sleep.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <time.h> -
c/src/exec/posix/src/sysconf.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <time.h> -
c/src/exec/posix/src/testcancel.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
c/src/exec/posix/src/time.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
c/src/exec/posix/src/types.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <limits.h> -
c/src/exec/posix/src/utsname.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdio.h> -
c/src/exec/posix/src/wait.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
c/src/exec/posix/src/waitpid.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
c/src/lib/libc/utsname.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdio.h> -
cpukit/itron/ChangeLog
r5c26b28b rf42b726 1 2001-01-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add src/config.h 4 * src/Makefile.am: Add INCLUDES += -I. to pickup config.h 5 * src/.cvsignore: Add config.h and stamp-h 6 * src/*.c: Add config.h support. 7 1 8 2000-12-01 Joel Sherrill <joel@OARcorp.com> 2 9 -
cpukit/itron/src/.cvsignore
r5c26b28b rf42b726 1 1 Makefile 2 2 Makefile.in 3 stamp-h 4 stamp-h.in 5 config.h 6 config.h.in -
cpukit/itron/src/Makefile.am
r5c26b28b rf42b726 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 7 INCLUDES += -I. 6 8 7 9 TASK_C_FILES = task.c cre_tsk.c del_tsk.c sta_tsk.c ext_tsk.c exd_tsk.c \ -
cpukit/itron/src/can_wup.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/chg_pri.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/cre_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/cre_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/cre_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/cre_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/del_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/del_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/del_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/del_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/dis_dsp.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/ena_dsp.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/eventflags.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/exd_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/ext_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/fmempool.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/frsm_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/get_tid.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/itronintr.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/itronsem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/itrontime.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/mbox.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/mboxtranslatereturncode.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/msgbuffer.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/msgbuffertranslatereturncode.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/network.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/port.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/prcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/prcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/preq_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/psnd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/rcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/rcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/ref_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/ref_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/ref_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/ref_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/rel_wai.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/rot_rdq.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/rsm_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/sig_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/slp_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/snd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/snd_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/sta_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/sus_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <limits.h> -
cpukit/itron/src/sysmgmt.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/task.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/ter_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/trcv_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/trcv_mbx.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/tslp_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/tsnd_mbf.c
r5c26b28b rf42b726 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <itron.h> -
cpukit/itron/src/twai_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/vmempool.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/wai_sem.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/itron/src/wup_tsk.c
r5c26b28b rf42b726 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <itron.h> -
cpukit/libcsupport/src/utsname.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <stdio.h> -
cpukit/posix/ChangeLog
r5c26b28b rf42b726 1 2001-01-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add src/config.h 4 * src/Makefile.am: Add INCLUDES += -I. to pickup config.h 5 * src/.cvsignore: Add config.h and stamp-h 6 * src/*.c: Add config.h support. 7 1 8 2001-01-23 Joel Sherrill <joel@OARcorp.com> 2 9 -
cpukit/posix/src/.cvsignore
r5c26b28b rf42b726 1 1 Makefile 2 2 Makefile.in 3 stamp-h 4 stamp-h.in 5 config.h 6 config.h.in -
cpukit/posix/src/Makefile.am
r5c26b28b rf42b726 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 7 INCLUDES += -I. 6 8 7 9 # following are semi-implemented and untested -
cpukit/posix/src/adasupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/aio.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <aio.h> -
cpukit/posix/src/alarm.c
r5c26b28b rf42b726 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 14 17 15 18 #include <pthread.h> -
cpukit/posix/src/cancel.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/cancelrun.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/cleanuppop.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/cleanuppush.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/clockgetcpuclockid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/clockgetenableattr.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/clockgetres.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/clockgettime.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/clocksetenableattr.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/clocksettime.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <assert.h> -
cpukit/posix/src/cond.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condattrdestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condattrgetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condattrinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condattrsetpshared.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condbroadcast.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/conddefaultattributes.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/conddestroy.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condinit.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condmp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condsignal.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condsignalsupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condtimedwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condwait.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/condwaitsupp.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <pthread.h> -
cpukit/posix/src/devctl.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <devctl.h> -
cpukit/posix/src/execl.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/execle.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/execlp.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/execv.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/execve.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/execvp.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <errno.h> -
cpukit/posix/src/fork.c
r5c26b28b rf42b726 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
cpukit/posix/src/getegid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
cpukit/posix/src/geteuid.c
r5c26b28b rf42b726 2 2 * $Id$ 3 3 */ 4 5 #if HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <limits.h> -
cpukit/posix/src/getgid.c
r5c26b28b rf42b726 2 2