aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/posixsem2
Commit message (Collapse)AuthorAgeFilesLines
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: one-line .c comment patternWarner Losh2023-08-161-1/+0
| | | | Remove /^/[*/]\s*\$FreeBSD\$.*\n/
* sem: Don't free nameinfo that is still in list when open() fails.Jilles Tjoelker2016-01-221-0/+35
| | | | | | | | | | | | | This bug could be reproduced easily by calling sem_open() with O_CREAT | O_EXCL on a semaphore that is already open in the process. The struct sem_nameinfo would be freed while still in sem_list and later calls to sem_open() or sem_close() could access freed memory. PR: 206396 MFC after: 5 days Notes: svn path=/head/; revision=294565
* NO_MAN= has been deprecated in favor of MAN= for some time, go aheadWarner Losh2014-04-131-1/+1
| | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. Notes: svn path=/head/; revision=264400
* Remove dot at the end of errx() message.Konstantin Belousov2010-03-141-1/+1
| | | | | | | | Noted by: bde MFC after: 3 days Notes: svn path=/head/; revision=205151
* Adjust style, fix typo, do not print errno because it is meaningless there.Konstantin Belousov2010-03-141-1/+2
| | | | | | | | | This test fails for now. MFC after: 3 days Notes: svn path=/head/; revision=205149
* Don't forget to use fourth argument if O_CREAT is set in argument oflag.David Xu2010-01-071-2/+2
| | | | | | | The fourth specifies initial value for the semaphore. Notes: svn path=/head/; revision=201715
* Add test code for POSIX semaphore implementation.David Xu2010-01-052-0/+110
Notes: svn path=/head/; revision=201575