summaryrefslogtreecommitdiffstats
path: root/testsuite/mutex01 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mutex: Use panic() after ISR lock releaseSebastian Huber2018-03-131-1/+99
| | | | | | Using panic() with interrupts disabled could lead to an additional error (INTERNAL_ERROR_BAD_THREAD_DISPATCH_ENVIRONMENT) due to a potentially blocking output.
* tests/mutex01: Fix mtx_recursed() usageSebastian Huber2017-11-091-32/+32
|
* Use <sys/lock.h> provided by NewlibSebastian Huber2017-06-081-1/+1
|
* Update due to Newlib 2017-06-07 changesSebastian Huber2017-06-081-1/+1
| | | | | | | | | | | | | | | | | The following files are now provided by Newlib: * arpa/inet.h * net/if.h * netinet/in.h * netinet/tcp.h * sys/socket.h * sys/uio.h * sys/un.h The <sys/param.h> and <sys/cpuset.h> are now compatible enough to be used directly. Update #2833.
* Directly use <sys/types.h> provided by NewlibSebastian Huber2016-05-301-1/+1
|
* Replace RTEMS objects with custom implementationSebastian Huber2014-09-231-0/+520
Performance analysis revealed that the standard RTEMS objects are a major bottleneck. The object get mechanism and attribute checks at runtime have a significant overhead. Use a custom implementation for synchronization primitives. This drops also the size of the synchronization primitives considerably.