summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* psxtests/psx14: Include missing header fileSebastian Huber2013-08-061-0/+1
|
* Unlimited objects support for POSIX keysZhongwei Yao2013-08-0632-5/+1337
| | | | | | | This patch enables unlimited model in POSIX key manger and have a decent runtime on POSIX key searching, adding and deleting operations. Memory overhead is lower than current implementation when the size of key and key value becomes big.
* score: Rename tod.h to todimpl.hSebastian Huber2013-08-013-3/+3
|
* score: Add and use _Thread_Update_cpu_time_used()Sebastian Huber2013-08-011-4/+5
| | | | Fix _times().
* score: Merge tod implementation into one fileSebastian Huber2013-07-263-0/+6
| | | | | Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
* score: Create object implementation headerSebastian Huber2013-07-261-1/+2
| | | | | | Move implementation specific parts of object.h and object.inl into new header file objectimpl.h. The object.h contains now only the application visible API.
* score: Create stack implementation headerSebastian Huber2013-07-232-2/+4
| | | | | | Move implementation specific parts of stack.h and stack.inl into new header file stackimpl.h. The stack.h contains now only the application visible API.
* posix: Create timer implementation headerSebastian Huber2013-07-221-0/+1
| | | | | | Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
* posix: Create pthread implementation headerSebastian Huber2013-07-222-2/+2
| | | | | | Move implementation specific parts of pthread.h and pthread.inl into new header file pthreadimpl.h. The pthread.h contains now only the application visible API.
* posix: Create priority implementation headerSebastian Huber2013-07-221-1/+0
| | | | | | Move implementation specific parts of priority.h and priority.inl into new header file priorityimpl.h. Remove priority.h since there is no application visible API.
* testsuites: Use _Thread_Get_executing()Sebastian Huber2013-07-222-2/+2
|
* testsuites: Include missing header filesSebastian Huber2013-07-224-0/+4
|
* psxtests/psxcleanup: Fix cleanup push/pop testSebastian Huber2013-07-051-4/+3
| | | | | The pthread_cleanup_push() and pthread_cleanup_pop() statements must appear as a pair in the same lexical scope as required by POSIX.
* psxtests/psxhdrs: Fix cleanup push/pop testSebastian Huber2013-07-053-29/+3
| | | | | The pthread_cleanup_push() and pthread_cleanup_pop() statements must appear as a pair in the same lexical scope as required by POSIX.
* psxtests/psxkey02: SimplifySebastian Huber2013-06-252-71/+23
| | | | This avoids problems with debugging enabled.
* psxtests/psxtime: Reduce test timeSebastian Huber2013-05-062-235/+139
|
* testsuites: Fix warningsSebastian Huber2013-04-112-22/+37
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-2622/+0
| | | | | | | | | This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
* testsuites: Fix prototypesSebastian Huber2013-01-272-7/+6
|
* testsuites: Use rtems_fatal_source_description()Sebastian Huber2013-01-272-12/+3
|
* Generating .scn (Screen Shots) #7Alex Ivanov2013-01-141-0/+5
|
* libcsupport: Add rtems_resource_snapshot_take()Sebastian Huber2012-12-212-5/+101
| | | | | | Add rtems_resource_rtems_api, rtems_resource_posix_api, rtems_resource_snapshot, rtems_resource_snapshot_equal(), and rtems_resource_snapshot_check().
* posix: Add and use <rtems/posix/psignalimpl.h>Sebastian Huber2012-12-051-1/+3
| | | | | This file contains the parts of <rtems/posix/psignal.h> that are only necessary for the POSIX API implementation.
* Filesystem: PR1619: Use ENOSYS for default statvfsSebastian Huber2012-11-222-4/+4
| | | | | POSIX does not specify an error number in case the file system does not support this call. Use the Linux value.
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-151-3/+0
| | | | | | | Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
* sapi: Add and use rtems_internal_error_descriptionSebastian Huber2012-11-151-31/+1
|
* score: Work area initialization API changeSebastian Huber2012-10-251-2/+7
| | | | | | | | | | | | The work areas (RTEMS work space and C program heap) will be initialized now in a separate step and are no longer part of rtems_initialize_data_structures(). Initialization is performed with tables of Heap_Area entries. This allows usage of scattered memory areas present on various small scale micro-controllers. The sbrk() support API changes also. The bsp_sbrk_init() must now deal with a minimum size for the first memory chunk to take the configured work space size into account.
* Revert "Add config.h.in."Gedare Bloom2012-08-061-107/+0
| | | | This reverts commit cf42a6ea9dbb6ebee498ae8db319d3e475bcd6be.
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* psxtests/psxchroot01: TypoSebastian Huber2012-07-171-1/+1
|
* psxtests/psxpipe01: Use greedy allocation APISebastian Huber2012-07-171-3/+4
|
* score: Change greedy allocation APISebastian Huber2012-07-175-16/+23
|
* Fix C files which had two semi-colons at EOLJoel Sherrill2012-05-311-2/+1
|
* Filesystem: Wait for unmount() to finishSebastian Huber2012-05-292-43/+60
|
* Add config.h.in.Ralf Corsépius2012-05-241-0/+107
|
* Filesystem: Use ioctl_command_tSebastian Huber2012-05-151-3/+1
|
* psxtests - Eliminate missing prototype warningsJoel Sherrill2012-05-1171-201/+556
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-11409-1015/+0
| | | | | | | | | | | | 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.
* Filesystem: PR1398: Fix lseek() mechanicSebastian Huber2012-05-111-33/+30
| | | | | | | | | | | | According to POSIX the lseek() function shall not, by itself, extend the size of a file. Remove the size field of rtems_libio_t. A file has only one size but may have multiple open file descriptors. Thus a file size field in the file descriptor may lead to inconsistencies. New default handlers rtems_filesystem_default_lseek_file() and rtems_filesystem_default_lseek_directory().
* Revert: Remove CVS IdsJoel Sherrill2012-05-0784-0/+400
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-0484-400/+0
|
* psxaio01/psxaio02 - Formatting correctionsJoel Sherrill2012-05-032-18/+18
| | | | | The file header was moved over one space. These two were the only files in the testsuite which did this.
* Filesystem: Read-only file system checksSebastian Huber2012-03-132-8/+30
| | | | | | | o Make sure EROFS is indicated for write operations on a read-only file system. o Add error indication for read-only file systems in fchmod() and fchown() according to POSIX.
* Filesystem: Reference counting for locationsSebastian Huber2012-03-138-168/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* psxtests: Fix typo in psxstatSebastian Huber2012-02-231-1/+1
|
* Use alternative APISebastian Huber2012-02-173-11/+3
| | | | | | Replaced Allocate_majority_of_workspace() with rtems_workspace_allocate(). Replaced Allocate_majority_of_heap() with rtems_heap_greedy_allocate().
* Remove all .cvsignore files.Joel Sherrill2012-02-0183-203/+0
|
* 2011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-12-132-1/+5
| | | | * psxconfig01/init.c: Create floating point tasks.
* 2011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-12-132-15/+7
| | | | * psxmsgq04/init.c: Fixed allocation of second message queue.