Added summary of how to install xfce4. Corrected one of the commands.
[ikiwiki.git] / posix_checklists / index.mdwn
1 Missing routines for POSIX:
2
3 200112
4
5 * sem_timedwait: Disabled in libthread for some reason
6 [optional]
7
8 * we only support the PTHREAD_PROCESS_PRIVATE as process-shared attribute for pthread_barrierattr*()
9 [e.g. in pthread_barrierattr_setpshared()]
10
11 200809
12
13 * sigqueue : optional in 200112, required in 200809. 
14 We don't support sigqueue or any posix signal queuing.
15
16 * mq_notify doesn't support SIGEV_THREAD
17 This would be fairly straightforward to support
18
19 * aio_notify doesn't support SIGEV_SIGNAL
20 This is blocked by lack of proper SIGINFO
21
22 * POSIX aio is implemented by wrapping synchronous routines
23
24 * POSIX aio routines do not perform full set of required tests.
25
26 * open_memstream seek behaviour is not posix-compliant.
27
28 * O_CLOEXEC support