summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* psxhdrs: Changed the Copyright license to BSD-2-Clause .Pritish Jain2018-12-13195-2935/+5080
| | | | | The Copyright clause has been changed to BSD-2-Clause for all the tests in the header files math.h , utime.h , fmtmsg.h and sys/ipc.h .
* psxhdrs: Add POSIX API Signature Compliance Tests for sys/msg.h (GCI 2018)Jacob Shin2018-12-135-0/+219
|
* psxhdrs: Add POSIX API Signature Compliance Tests for sys/select.h (GCI 2018)Jacob Shin2018-12-137-1/+304
| | | | The Google Code-In finished before I could submit this, so I thought I would submit this instead of letting it go to waste.
* psxhdrs: Add POSIX Signature Compliance Test for sys/shm.h (GCI 2018)ABR290B2018-12-135-0/+151
|
* POSIX Signature Compliance Test for utmpx.h (GCI2018)ABR290B2018-12-137-0/+218
|
* POSIX Signature Compliance Test for sys/statvfs.h (GCI 2018)ABR290B2018-12-133-0/+76
|
* psxhdrs: Add POSIX API Signature Compliance Tests for net/if.hJacob Shin2018-12-125-0/+195
|
* psxhdrs/: Changed boilerplate licenses to BSD-2 (GCI 2018)zehata2018-12-11187-2149/+4205
|
* psxhdrs: POSIX API Signature Compliance Test for setjmp.h (GCI2018)ABR290B2018-12-115-1/+146
|
* psxhdrs: Implement POSIX API Signature Compliance Tests for poll.h (GCI 2018)Marçal Comajoan Cara2018-12-112-0/+51
| | | | | | | poll.h implements poll() which is not supported by RTEMS according to the RTEMS POSIX 1003.1 Compliance Guide. See #3657. This work was part of GCI 2018.
* psxhdrs: Add POSIX Compliance Tests for wordexp.h (GCI 2018)Pritish Jain2018-12-113-0/+101
|
* posix: Fix shm_unlink()Sebastian Huber2018-12-111-1/+10
| | | | This function is untested.
* psxhdrs: Fix compile errorsSebastian Huber2018-12-118-16/+16
|
* Remove white space at end of lineSebastian Huber2018-12-111-3/+3
| | | | Update #3053.
* psxhdrs: Add POSIX API Signature Compliance Tests for pwd.h (GCI 2018)Himanshu402018-12-108-0/+295
|
* psxhdrs: Add POSIX API Signature Compliance Tests for fcntl.h (GCI 2018)Zenon2018-12-104-0/+151
|
* psxtests/Makefile.am: Add fcntl methods missed in previous commitJoel Sherrill2018-12-101-0/+6
|
* psxtests/Makefile.am: Correct spacingJoel Sherrill2018-12-101-39/+39
|
* psxhdrs: Add POSIX API Signature Compliance Tests for sys/resource.h (GCI 2018)Jacob Shin2018-12-106-1/+202
|
* psxhdrs: Implement POSIX API Signature Compliance Tests for sys/times.h (GCI ↵Marçal Comajoan Cara2018-12-092-1/+39
| | | | 2018)
* psxhdrs: Add POSIX Conformance Test for sys/ipc.h (GCI 2018)Shashvat Jain2018-12-092-1/+41
| | | | | | | Test for this file has been added but are disabled due to the absence of header file sys/ipc.h. see Ticket #3650
* psxhdrs: Add POSIX API Signature Compliance Tests for sys/stat.h (GCI 2018)Jacob Shin2018-12-0917-6/+644
|
* psxhdrs: Added POSIX API Signature Compliance Tests for threads.h (GCI 2018)Himanshu402018-12-0926-0/+1069
|
* psxhdrs: Add POSIX API Signature Compliance Tests for stdlib.h (GCI 2018)Jacob Shin2018-12-0966-2/+2466
|
* psxhdrs: POSIX Signature Test for syslog.h (GCI2018)ABR290B2018-12-085-0/+140
|
* psxhdrs: added POSIX API Signature Compliance Tests for libgen.h (GCI 2018)Himanshu402018-12-083-1/+79
|
* psxhdrs: Added POSIX Compliance Test for wchar.h (GCI 2018)zehata2018-12-0883-1/+3273
|
* Implement POSIX API Signature Compliance Tests for stddef.h (GCI 2018)Marçal Comajoan Cara2018-12-082-0/+39
|
* POSIX Signature Test for arpa/inet.h (GCI2018)ABR290B2018-12-085-1/+161
|
* psxhdrs: POSIX API Signature Compliance Tests for netdb.h (GCI 2018)Himanshu402018-12-0726-1/+1025
|
* Implement POSIX API Signature Compliance Tests for uchar.hMarçal Comajoan Cara2018-12-075-0/+168
| | | | | | | This header file is C11 and not currently supported by RTEMS. See #3643. This work was part of GCI 2018.
* score: Remove Objects_Information::the_apiSebastian Huber2018-12-073-18/+12
| | | | | | | Remove Objects_Information::the_class. This information is already contained in Objects_Information::maximum_id. Update #3621.
* score: Remove Objects_Information::maximumSebastian Huber2018-12-0713-89/+105
| | | | | | | This information is already present in Objects_Information::maximum_id. Add and use _Objects_Get_maximum_index(). Update #3621.
* score: Optimize object lookupSebastian Huber2018-12-0717-97/+302
| | | | | | | | | | | | | | | | Use the maximum ID for the ID to object translation. Using the maximum ID gets rid of an additional load from the object information in _Objects_Get(). In addition, object lookups fail for every ID in case the object information is cleared to zero. This makes it a bit more robust during system startup (see new tests in spconfig02). The local table no longer needs a NULL pointer entry at array index zero. Adjust all the object iteration loops accordingly. Remove Objects_Information::minimum_id since it contains only redundant information. Add _Objects_Get_minimum_id() to get the minimum ID. Update #3621.
* score: Rename Objects_Information::allocation_sizeSebastian Huber2018-12-076-35/+47
| | | | | | | | Rename Objects_Information::allocation_size in Objects_Information::objects_per_block. Adjust integer types in _Objects_Shrink_information() and _Objects_Free(). Update #3621.
* score: Rename Objects_Information::sizeSebastian Huber2018-12-075-14/+14
| | | | | | | | Rename Objects_Information::size to Objects_Information::object_size. Change its type from size_t to uint16_t and move it to reduce the size of Objects_Information. Update #3621.
* score: Remove Objects_Information::is_stringSebastian Huber2018-12-0723-68/+62
| | | | | | Use Objects_Information::name_length to store this information. Update #3621.
* score: Remove dead codeSebastian Huber2018-12-071-16/+0
| | | | Update #3621.
* rtems: Add rtems_scheduler_get_maximum_priority()Sebastian Huber2018-12-074-1/+94
| | | | Update #3636.
* Simplify _CPU_Counter_difference()Sebastian Huber2018-12-0715-347/+332
| | | | | | | | | | | | | | In order to simplify the use of CPU counter values it is beneficial to have monotonic increasing values within the range of the CPU counter ticks data type, e.g. 32-bit unsigned integer. This eases the use of CPU counter timestamps in external tools which do not know the details of the CPU counter hardware. The CPU counter is the fastest way to get a time on an RTEMS system. Such a CPU counter may be also used as the timecounter. Use it on SPARC for this purpose to simplify the clock drivers. Update #3456.
* score: Avoid sbintime_t in API headersSebastian Huber2018-12-0710-267/+311
| | | | | | | | | | The sbintime_t is a non-POSIX type and not visible if strict standard options are selected. Move implementation details from <rtems/score/timestamp.h> to <rtems/score/timestampimpl.h>. Update #3598.
* psxtimes01: Fix sporadic failuresSebastian Huber2018-12-071-1/+1
| | | | | | | | It is not enough to just wait for at least the first clock tick to get non-zero times. In _times() we round down, so the uptime must be greater than or equal to the clock tick interval. We do not know when the timecounter is started during the system initialization. We have to wait until at least two ticks happened.
* tests: Fix rtems_test_spin_until_next_tick()Sebastian Huber2018-12-073-15/+13
| | | | | | This bug surfaced due to sporadic failures in sptimecounter02. Adjust rtems_test_spin_for_ticks() to include the partial tick in the argument value.
* psxtests/Makefile.am: Fix ticket number for ucontext.hJoel Sherrill2018-12-061-4/+4
|
* psxhdrs: Add POSIX API Signature Compliance Tests for ucontext.h (GCI 2018)Jacob Shin2018-12-065-1/+197
|
* Implement POSIX API Signature Compliance Tests for inttypes.hMarçal Comajoan Cara2018-12-067-1/+243
| | | | This work was part of GCI 2018
* psxhdrs:Add POSIX Conformance Test for fmtmsg.h (GCI 2018)Shashvat Jain2018-12-062-19/+25
|
* psxhdrs:Add POSIX Conformance Test for fmtmsg.h (GCI 2018)Shashvat Jain2018-12-062-1/+42
| | | | | | | Includes test fmtmsg which has been disabled due to the absence of header file fmtmsg.h . Updates #3639
* psxhdrs: Add POSIX API Signature Compliance Tests for string.h (GCI 2018)Himanshu402018-12-0635-0/+1366
|
* Added POSIX Compliance Test for <ctype.h> (GCI 2018)zehata2018-12-0631-0/+1127
|