Commit Graph

64 Commits

Author SHA1 Message Date
Sebastian Huber
a0b1b5edb8 Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
This define was superfluous, undocumented and used inconsistently.
2014-12-16 11:34:38 +01:00
Sebastian Huber
698c2e504a tests/psxtests: Use <rtems/test.h> 2014-03-25 08:06:16 +01:00
Chris Johns
c49985691f Change all references of rtems.com to rtems.org. 2014-03-21 08:10:47 +11:00
Joel Sherrill
6c2de6052d psxtests - Eliminate missing prototype warnings 2012-05-11 14:12:11 -05:00
Joel Sherrill
9b4422a251 Remove All CVS Id Strings Possible Using a Script
Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines
  next to each other after Id string line removed.
+ remove entire comment blocks which only exited to
  contain CVS Ids
+ If the processing left a blank line at the top of
  a file, it was removed.
2012-05-11 08:44:13 -05:00
Joel Sherrill
33a105fb69 Revert: Remove CVS Ids
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html
for details.
2012-05-07 11:08:48 -05:00
Ralf Corsépius
67cad33ea9 Remove CVS-Ids. 2012-05-04 09:36:24 +02:00
Sebastian Huber
3b7c123c8d Filesystem: Reference counting for locations
o A new data structure rtems_filesystem_global_location_t was
   introduced to be used for
    o the mount point location in the mount table entry,
    o the file system root location in the mount table entry,
    o the root directory location in the user environment, and
    o the current directory location in the user environment.
   During the path evaluation global start locations are obtained to
   ensure that the current file system instance will be not unmounted in
   the meantime.
 o The user environment uses now reference counting and is protected
   from concurrent access.
 o The path evaluation process was completely rewritten and simplified.
   The IMFS, RFS, NFS, and DOSFS use now a generic path evaluation
   method.  Recursive calls in the path evaluation have been replaced
   with iteration to avoid stack overflows.  Only the evaluation of
   symbolic links is recursive.  No dynamic memory allocations and
   intermediate buffers are used in the high level path evaluation.  No
   global locks are held during the file system instance specific path
   evaluation process.
 o Recursive symbolic link evaluation is now limited by
   RTEMS_FILESYSTEM_SYMLOOP_MAX.  Applications can retrieve this value
   via sysconf().
 o The device file system (devFS) uses now no global variables and
   allocation from the workspace.  Node names are allocated from the
   heap.
 o The upper layer lseek() performs now some parameter checks.
 o The upper layer ftruncate() performs now some parameter checks.
 o unmask() is now restricted to the RWX flags and protected from
   concurrent access.
 o The fchmod_h and rmnod_h file system node handlers are now a file
   system operation.
 o The unlink_h operation has been removed.  All nodes are now destroyed
   with the rmnod_h operation.
 o New lock_h, unlock_h, clonenod_h, and are_nodes_equal_h file system
   operations.
 o The path evaluation and file system operations are now protected by
   per file system instance lock and unlock operations.
 o Fix and test file descriptor duplicate in fcntl().
 o New test fstests/fsnofs01.
2012-03-13 12:23:37 +01:00
Joel Sherrill
61250b4ce9 Remove all .cvsignore files. 2012-02-01 10:59:44 -06:00
Joel Sherrill
1b8f204fd5 2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1589/build
	* psx01/Makefile.am, psx02/Makefile.am, psx03/Makefile.am,
	psx04/Makefile.am, psx05/Makefile.am, psx06/Makefile.am,
	psx07/Makefile.am, psx08/Makefile.am, psx09/Makefile.am,
	psx10/Makefile.am, psx11/Makefile.am, psx12/Makefile.am,
	psx13/Makefile.am, psx14/Makefile.am, psx15/Makefile.am,
	psx16/Makefile.am, psxaio01/Makefile.am, psxaio02/Makefile.am,
	psxaio03/Makefile.am, psxalarm01/Makefile.am,
	psxautoinit01/Makefile.am, psxautoinit02/Makefile.am,
	psxbarrier01/Makefile.am, psxcancel/Makefile.am,
	psxcancel01/Makefile.am, psxchroot01/Makefile.am,
	psxclassic01/Makefile.am, psxcleanup/Makefile.am,
	psxcleanup01/Makefile.am, psxclock/Makefile.am,
	psxcond01/Makefile.am, psxeintr_join/Makefile.am,
	psxenosys/Makefile.am, psxfatal01/Makefile.am,
	psxfatal02/Makefile.am, psxfchx01/Makefile.am, psxfile01/Makefile.am,
	psxfile02/Makefile.am, psxfilelock01/Makefile.am,
	psxgetrusage01/Makefile.am, psxid01/Makefile.am,
	psximfs01/Makefile.am, psximfs02/Makefile.am,
	psxintrcritical01/Makefile.am, psxitimer/Makefile.am,
	psxkey01/Makefile.am, psxkey02/Makefile.am, psxkey03/Makefile.am,
	psxmount/Makefile.am, psxmsgq01/Makefile.am, psxmsgq02/Makefile.am,
	psxmsgq03/Makefile.am, psxmsgq04/Makefile.am,
	psxmutexattr01/Makefile.am, psxobj01/Makefile.am,
	psxpasswd01/Makefile.am, psxpasswd02/Makefile.am,
	psxpipe01/Makefile.am, psxrdwrv/Makefile.am, psxreaddir/Makefile.am,
	psxrwlock01/Makefile.am, psxsem01/Makefile.am,
	psxsignal01/Makefile.am, psxsignal02/Makefile.am,
	psxsignal03/Makefile.am, psxsignal04/Makefile.am,
	psxsignal05/Makefile.am, psxsignal06/Makefile.am,
	psxspin01/Makefile.am, psxspin02/Makefile.am, psxstack01/Makefile.am,
	psxstack02/Makefile.am, psxstat/Makefile.am, psxsysconf/Makefile.am,
	psxtime/Makefile.am, psxtimer01/Makefile.am, psxtimer02/Makefile.am,
	psxtimes01/Makefile.am, psxualarm/Makefile.am, psxusleep/Makefile.am:
	Remove obsolete optional manager capability.
2011-12-08 21:38:23 +00:00
Ralf Corsepius
8ed7d0a645 2011-10-25 Ralf Corsépius <ralf.corsepius@rtems.org>
* psxreaddir/test.c: Remove bogus casts.
	Fix fprintf format strings.
2011-10-25 15:12:08 +00:00
Joel Sherrill
3cefd8f090 2011-05-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxfile01/test.c, psxmsgq01/init.c, psxreaddir/test.c: Fix tests
	broken in warning pass.
2011-05-06 17:29:29 +00:00
Joel Sherrill
ff7ff62a0f 2011-05-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* psx04/task3.c, psxfile01/test.c, psxhdrs/Makefile.am,
	psxmsgq01/init.c, psxreaddir/test.c, psxsignal01/init.c,
	psxtimes01/init.c, psxualarm/init.c: Remove warnings.
2011-05-05 16:45:52 +00:00
Ralf Corsepius
cafefbf263 Add HAVE_CONFIG_H. 2011-02-22 09:47:36 +00:00
Joel Sherrill
ce00f304d7 2010-06-23 Joel Sherrill <joel.sherrilL@OARcorp.com>
* psx01/Makefile.am, psx02/Makefile.am, psx03/Makefile.am,
	psx04/Makefile.am, psx05/Makefile.am, psx06/Makefile.am,
	psx07/Makefile.am, psx08/Makefile.am, psx09/Makefile.am,
	psx10/Makefile.am, psx11/Makefile.am, psx12/Makefile.am,
	psx13/Makefile.am, psx14/Makefile.am, psxalarm01/Makefile.am,
	psxautoinit01/Makefile.am, psxautoinit02/Makefile.am,
	psxbarrier01/Makefile.am, psxcancel/Makefile.am,
	psxcancel01/Makefile.am, psxchroot01/Makefile.am,
	psxcleanup/Makefile.am, psxcleanup01/Makefile.am,
	psxclock/Makefile.am, psxcond01/Makefile.am, psxenosys/Makefile.am,
	psxfatal01/Makefile.am, psxfatal02/Makefile.am,
	psxfile01/Makefile.am, psxintrcritical01/Makefile.am,
	psxitimer/Makefile.am, psxkey01/Makefile.am, psxkey02/Makefile.am,
	psxkey03/Makefile.am, psxmount/Makefile.am, psxmsgq01/Makefile.am,
	psxmsgq02/Makefile.am, psxmsgq03/Makefile.am, psxmsgq04/Makefile.am,
	psxmutexattr01/Makefile.am, psxobj01/Makefile.am,
	psxpasswd01/Makefile.am, psxrdwrv/Makefile.am,
	psxreaddir/Makefile.am, psxrwlock01/Makefile.am,
	psxsem01/Makefile.am, psxsignal01/Makefile.am,
	psxsignal02/Makefile.am, psxsignal03/Makefile.am,
	psxsignal04/Makefile.am, psxsignal05/Makefile.am,
	psxspin01/Makefile.am, psxspin02/Makefile.am, psxstack01/Makefile.am,
	psxstat/Makefile.am, psxsysconf/Makefile.am, psxtime/Makefile.am,
	psxtimer01/Makefile.am, psxtimer02/Makefile.am,
	psxualarm/Makefile.am, psxusleep/Makefile.am: Revert accidentally
	committed patch.
2010-06-23 22:49:59 +00:00
Joel Sherrill
e6e4eecec5 2010-06-23 Joel Sherrill <joel.sherrilL@OARcorp.com>
* Makefile.am, configure.ac, psx01/Makefile.am, psx02/Makefile.am,
	psx03/Makefile.am, psx04/Makefile.am, psx05/Makefile.am,
	psx06/Makefile.am, psx07/Makefile.am, psx08/Makefile.am,
	psx09/Makefile.am, psx10/Makefile.am, psx11/Makefile.am,
	psx12/Makefile.am, psx13/Makefile.am, psx14/Makefile.am,
	psxalarm01/Makefile.am, psxautoinit01/Makefile.am,
	psxautoinit02/Makefile.am, psxbarrier01/Makefile.am,
	psxcancel/Makefile.am, psxcancel01/Makefile.am,
	psxchroot01/Makefile.am, psxcleanup/Makefile.am,
	psxcleanup01/Makefile.am, psxclock/Makefile.am,
	psxcond01/Makefile.am, psxenosys/Makefile.am, psxfatal01/Makefile.am,
	psxfatal02/Makefile.am, psxfile01/Makefile.am, psxfile02/init.c,
	psxfile02/psxfile02.doc, psxfile02/psxfile02.scn,
	psxintrcritical01/Makefile.am, psxitimer/Makefile.am,
	psxkey01/Makefile.am, psxkey02/Makefile.am, psxkey03/Makefile.am,
	psxmount/Makefile.am, psxmsgq01/Makefile.am, psxmsgq02/Makefile.am,
	psxmsgq03/Makefile.am, psxmsgq04/Makefile.am,
	psxmutexattr01/Makefile.am, psxobj01/Makefile.am,
	psxpasswd01/Makefile.am, psxrdwrv/Makefile.am,
	psxreaddir/Makefile.am, psxrwlock01/Makefile.am,
	psxsem01/Makefile.am, psxsignal01/Makefile.am,
	psxsignal02/Makefile.am, psxsignal03/Makefile.am,
	psxsignal04/Makefile.am, psxsignal05/Makefile.am,
	psxspin01/Makefile.am, psxspin02/Makefile.am, psxstack01/Makefile.am,
	psxstat/Makefile.am, psxsysconf/Makefile.am, psxtime/Makefile.am,
	psxtimer01/Makefile.am, psxtimer02/Makefile.am,
	psxualarm/Makefile.am, psxusleep/Makefile.am: Add test for fd greater
	than number of file descriptors configured.
2010-06-23 22:48:44 +00:00
Chris Johns
042a44210a 2010-06-02 Chris Johns <chrisj@rtems.org>
* psxfile01/test.c, psxmount/test.c, psxreaddir/test.c,
        psxstat/test.c: Update to the new mount API.
2010-06-02 00:50:37 +00:00
Joel Sherrill
e8b4506836 2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
* psxreaddir/psxreaddir.scn, psxreaddir/test.c: Do not test for
	rewinddir(NULL) since we are now using newlib's implementation and it
	does not check for NULL. This causes a fault on some targets.
2010-04-25 19:17:52 +00:00
Joel Sherrill
2317457e10 2009-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/pmacros.h, psx01/task.c, psx02/init.c, psx02/task.c,
	psx03/init.c, psx03/task.c, psx04/init.c, psx04/task1.c,
	psx04/task2.c, psx04/task3.c, psx05/init.c, psx05/task.c,
	psx05/task2.c, psx05/task3.c, psx06/init.c, psx06/task.c,
	psx06/task2.c, psx07/init.c, psx08/init.c, psx08/task2.c,
	psx08/task3.c, psx09/init.c, psx10/init.c, psx10/task.c,
	psx10/task2.c, psx10/task3.c, psx11/init.c, psx11/task.c,
	psx12/init.c, psxalarm01/init.c, psxbarrier01/test.c,
	psxcancel01/init.c, psxchroot01/test.c, psxclock/init.c,
	psxfile01/test.c, psxfile01/test_cat.c, psxfile01/test_extend.c,
	psxfile01/test_write.c, psxitimer/init.c, psxkey01/task.c,
	psxkey02/init.c, psxkey03/init.c, psxmount/test.c, psxmsgq01/init.c,
	psxmsgq03/init.c, psxmsgq04/init.c, psxreaddir/test.c,
	psxrwlock01/test.c, psxsem01/init.c, psxsignal01/init.c,
	psxsignal01/task1.c, psxsignal02/init.c, psxsignal03/init.c,
	psxsignal05/init.c, psxspin01/test.c, psxspin02/test.c,
	psxstack01/init.c, psxstat/test.c, psxtime/test.c, psxualarm/init.c:
	Use rtems_test_assert() consistently instead of system assert().
	rtems_test_assert() is designed to integrate into the RTEMS test
	suite infrastructure.
2009-12-08 17:52:53 +00:00
Ralf Corsepius
a60113c616 2009-01-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* psxreaddir/test.c: Apply PRI* macros to print struct stat fields.
2009-11-01 07:54:35 +00:00
Ralf Corsepius
22397d3d35 Remove __P (unused anachronism). 2009-10-30 13:26:25 +00:00
Ralf Corsepius
b6912c40f8 Remove unused vars.
Add missing prototypes.
2009-10-25 06:25:04 +00:00
Ralf Corsepius
3d5483771c Eliminate _exe_/.exe. 2009-04-03 12:55:13 +00:00
Joel Sherrill
8ae91559e3 2008-04-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxchroot01/main.c, psxmount/main.c, psxreaddir/main.c: Use
	CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER where needed.
2008-04-17 22:47:02 +00:00
Joel Sherrill
66c348cb12 2008-01-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/pmacros.h, psx01/init.c, psx01/system.h, psx13/main.c,
	psxbarrier01/main.c, psxchroot01/main.c, psxfatal_support/init.c,
	psxfile01/main.c, psxfile01/test.c, psxmount/main.c, psxrdwrv/main.c,
	psxreaddir/main.c, psxrwlock01/main.c, psxspin01/main.c,
	psxstat/main.c, psxtime/main.c: Change TEST_INIT to CONFIGURE_INIT.
	Make tmacros.h available to all POSIX tests. Add a clock_settime case
	for < 1988.
2008-02-01 00:45:08 +00:00
Ralf Corsepius
d4f5ddcb85 Eliminate scndir, docdir. Use rtems_testsdir instead. 2006-07-11 04:54:10 +00:00
Ralf Corsepius
a6b588d649 Convert to using *_PROGRAMS. 2005-11-13 06:46:05 +00:00
Ralf Corsepius
3bb5d94490 Rework. 2005-11-11 14:33:33 +00:00
Ralf Corsepius
4024e57803 Cosmetics. 2005-11-11 10:26:50 +00:00
Ralf Corsepius
7e3887773a Eliminate TEST. 2005-11-11 09:03:24 +00:00
Ralf Corsepius
197c9135e2 Expand psxtests.am. 2005-11-11 08:14:41 +00:00
Ralf Corsepius
cb2818800d Eliminate DOCTYPES. 2005-11-10 22:21:20 +00:00
Ralf Corsepius
e0ecc8c61a AM_CPPFLAGS += -I..../support/include. 2005-11-09 12:25:16 +00:00
Ralf Corsepius
d4f5afd24f Add ../include/pmacros.h 2005-11-07 13:53:25 +00:00
Ralf Corsepius
39767d0c6b Remove SRC, PRINT_SRC. 2005-11-07 09:43:59 +00:00
Ralf Corsepius
d66557fac4 Switch back to include compile.am instead of amcompile.am 2005-11-07 09:09:26 +00:00
Ralf Corsepius
91de254961 Partial conversion to automake. 2005-11-07 08:37:18 +00:00
Joel Sherrill
a514e785c5 2005-04-26 Joel Sherrill <joel@OARcorp.com>
* psxreaddir/test.c: Eliminate warnings.
2005-04-26 23:37:05 +00:00
Ralf Corsepius
1b4f2b305c Remove stray white spaces. 2004-04-16 09:24:30 +00:00
Ralf Corsepius
3239698d1f Remove stray white spaces. 2004-04-15 13:26:21 +00:00
Ralf Corsepius
80450c7074 * psx01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
* psx02/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx03/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx04/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx05/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx06/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx07/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx08/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx09/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx10/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx11/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx12/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psx13/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxcancel/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxchroot01/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxfile01/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxmount/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxmsgq01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxreaddir/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxsem01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxstat/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxtime/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* psxtimer/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
2004-04-01 15:16:20 +00:00
Ralf Corsepius
0fdaca2197 2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* psxcancel/init.c: Include <rtems/console.h> instead of <console.h>.
	* psxmount/test.c: Include <rtems/imfs.h> instead of <imfs.h>.
	* psxreaddir/test.c: Include <rtems/imfs.h> instead of <imfs.h>.
	* psxstat/test.c: Include <rtems/imfs.h> instead of <imfs.h>.
2004-04-01 10:14:37 +00:00
Ralf Corsepius
1ace275091 2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* psx01/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
	Add PRE/TMPINSTALL_FILES to CLEANFILES.
	* psx02/Makefile.am: Ditto.
	* psx03/Makefile.am: Ditto.
	* psx04/Makefile.am: Ditto.
	* psx05/Makefile.am: Ditto.
	* psx06/Makefile.am: Ditto.
	* psx07/Makefile.am: Ditto.
	* psx08/Makefile.am: Ditto.
	* psx09/Makefile.am: Ditto.
	* psx10/Makefile.am: Ditto.
	* psx11/Makefile.am: Ditto.
	* psx12/Makefile.am: Ditto.
	* psx13/Makefile.am: Ditto.
	* psxcancel/Makefile.am: Ditto.
	* psxchroot01/Makefile.am: Ditto.
	* psxfile01/Makefile.am: Ditto.
	* psxmount/Makefile.am: Ditto.
	* psxmsgq01/Makefile.am: Ditto.
	* psxreaddir/Makefile.am: Ditto.
	* psxsem01/Makefile.am: Ditto.
	* psxstat/Makefile.am: Ditto.
	* psxtime/Makefile.am: Ditto.
	* psxtimer/Makefile.am: Ditto.
2004-01-14 07:49:29 +00:00
Ralf Corsepius
a450a93d06 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Reformat.
	* psx01/Makefile.am: Remove all-local: $(ARCH).
	* psx02/Makefile.am: Remove all-local: $(ARCH).
	* psx03/Makefile.am: Remove all-local: $(ARCH).
	* psx04/Makefile.am: Remove all-local: $(ARCH).
	* psx05/Makefile.am: Remove all-local: $(ARCH).
	* psx06/Makefile.am: Remove all-local: $(ARCH).
	* psx07/Makefile.am: Remove all-local: $(ARCH).
	* psx08/Makefile.am: Remove all-local: $(ARCH).
	* psx09/Makefile.am: Remove all-local: $(ARCH).
	* psx10/Makefile.am: Remove all-local: $(ARCH).
	* psx11/Makefile.am: Remove all-local: $(ARCH).
	* psx12/Makefile.am: Remove all-local: $(ARCH).
	* psx13/Makefile.am: Remove all-local: $(ARCH).
	* psxcancel/Makefile.am: Remove all-local: $(ARCH).
	* psxchroot01/Makefile.am: Remove all-local: $(ARCH).
	* psxfile01/Makefile.am: Remove all-local: $(ARCH).
	* psxhdrs/Makefile.am: Remove all-local: $(ARCH).
	* psxmount/Makefile.am: Remove all-local: $(ARCH).
	* psxmsgq01/Makefile.am: Remove all-local: $(ARCH).
	* psxreaddir/Makefile.am: Remove all-local: $(ARCH).
	* psxsem01/Makefile.am: Remove all-local: $(ARCH).
	* psxstat/Makefile.am: Remove all-local: $(ARCH).
	* psxtime/Makefile.am: Remove all-local: $(ARCH).
	* psxtimer/Makefile.am: Remove all-local: $(ARCH).
2003-12-01 21:29:46 +00:00
Ralf Corsepius
d549d0a665 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Makefile.am: Reflect having moved automake.
	include/Makefile.am: Reflect having moved automake.
	psx01/Makefile.am: Reflect having moved automake.
	psx02/Makefile.am: Reflect having moved automake.
	psx03/Makefile.am: Reflect having moved automake.
	psx04/Makefile.am: Reflect having moved automake.
	psx05/Makefile.am: Reflect having moved automake.
	psx06/Makefile.am: Reflect having moved automake.
	psx07/Makefile.am: Reflect having moved automake.
	psx08/Makefile.am: Reflect having moved automake.
	psx09/Makefile.am: Reflect having moved automake.
	psx10/Makefile.am: Reflect having moved automake.
	psx11/Makefile.am: Reflect having moved automake.
	psx12/Makefile.am: Reflect having moved automake.
	psx13/Makefile.am: Reflect having moved automake.
	psxcancel/Makefile.am: Reflect having moved automake.
	psxchroot01/Makefile.am: Reflect having moved automake.
	psxfile01/Makefile.am: Reflect having moved automake.
	psxhdrs/Makefile.am: Reflect having moved automake.
	psxmount/Makefile.am: Reflect having moved automake.
	psxmsgq01/Makefile.am: Reflect having moved automake.
	psxreaddir/Makefile.am: Reflect having moved automake.
	psxsem01/Makefile.am: Reflect having moved automake.
	psxstat/Makefile.am: Reflect having moved automake.
	psxtime/Makefile.am: Reflect having moved automake.
	psxtimer/Makefile.am: Reflect having moved automake.
2003-08-16 16:27:24 +00:00
Joel Sherrill
a9785892ff 2003-06-12 Joel Sherrill <joel@OARcorp.com>
* psxchroot01/test.c, psxreaddir/test.c: Removed warnings.
2003-06-12 15:41:19 +00:00
Joel Sherrill
7b64b25b19 2003-05-29 Joel Sherrill <joel@OARcorp.com>
* psx02/init.c, psx04/init.c, psx13/test.c, psxchroot01/test.c,
	psxhdrs/pthread07.c, psxmsgq01/init.c, psxreaddir/test.c,
	psxtimer/psxtimer.c: Removed warnings.
2003-05-29 19:07:59 +00:00
Ralf Corsepius
4f8d7dd13d 2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* psx01/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx02/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx03/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx04/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx05/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx06/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx07/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx08/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx09/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx10/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx11/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx12/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psx13/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxcancel/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxchroot01/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxfile01/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxhdrs/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxmount/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxmsgq01/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxreaddir/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxsem01/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxstat/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxtime/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* psxtimer/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-08-11 05:16:11 +00:00
Joel Sherrill
d8024895e3 2002-08-01 Joel Sherrill <joel@OARcorp.com>
* Per PR47 add support for buffered test output.  This involved
	adding defines to redirect output to a buffer and dump it when
	full, at "test pause", and at exit.  To avoid problems when redefining
	exit(), all tests were modified to call rtems_test_exit().
	Some tests, notable psxtests, had to be modified to include
	the standard test macro .h file (pmacros.h or tmacros.h) to
	enable this support.
	* include/pmacros.h, psx01/task.c, psx02/init.c, psx02/task.c,
	psx03/init.c, psx04/init.c, psx05/init.c, psx06/init.c, psx07/init.c,
	psx08/task3.c, psx09/init.c, psx10/init.c, psx11/init.c,
	psx12/init.c, psx13/Makefile.am, psx13/main.c, psx13/test.c,
	psxcancel/init.c, psxchroot01/Makefile.am, psxchroot01/main.c,
	psxchroot01/test.c, psxfile01/Makefile.am, psxfile01/main.c,
	psxfile01/test.c, psxfile01/test_cat.c, psxfile01/test_extend.c,
	psxfile01/test_write.c, psxmount/Makefile.am, psxmount/main.c,
	psxmount/test.c, psxmsgq01/init.c, psxreaddir/Makefile.am,
	psxreaddir/main.c, psxreaddir/test.c, psxsem01/init.c,
	psxstat/Makefile.am, psxstat/main.c, psxstat/test.c, psxtime/main.c,
	psxtime/test.c, psxtimer/psxtimer.c: Modified.
2002-08-02 00:53:21 +00:00
Joel Sherrill
8dc526ef91 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
	AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* Makefile.am: Remove AUTOMAKE_OPTIONS.
	* include/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx01/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx02/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx03/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx04/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx05/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx06/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx07/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx08/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx09/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx10/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx11/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx12/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psx13/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxcancel/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxchroot01/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxfile01/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxhdrs/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxmount/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxmsgq01/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxreaddir/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxsem01/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxstat/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxtime/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* psxtimer/Makefile.am: Remove AUTOMAKE_OPTIONS.
2002-03-28 00:44:18 +00:00