History log of /netbsd-src/lib/librt/Makefile (Results 1 – 21 of 21)
Revision Date Author Comments
# 0d6563db 13-Jun-2018 kamil <kamil@NetBSD.org>

Disable sanitizers for libm and librt

The sanitizers are designed to use pristine OS versions of these libraries,
install interceptors for public symbols in them and link with them in every
sanitize

Disable sanitizers for libm and librt

The sanitizers are designed to use pristine OS versions of these libraries,
install interceptors for public symbols in them and link with them in every
sanitized executable.

Having unmodified base libraries (c, m, rt, pthread) also makes the system
usable with programs linking with them and without sanitization, as there
are no fatal issues during the resolving of missing symbols.

The remaining libraries like libutil, libintl etc are prebuilt with
sanitization and all their users in the MKSANITIZER=yes distribution are
required to use the same sanitizer.

libc and libpthread are already marked with the NOSANITIZER flag.

show more ...


# f87fbe2f 05-Aug-2016 christos <christos@NetBSD.org>

add missing stuff for the affinity calls (Rocky Hotas)


# 1f9c8df1 05-Jul-2016 christos <christos@NetBSD.org>

man page for sched_protect (Charles Cui, GSoC 2016)


# 0ec95f7a 19-Dec-2013 rmind <rmind@NetBSD.org>

Add a man page for shm_open(3) and shm_unlink(3). Obtained from FreeBSD,
with various modifications.


# 4aae4db7 19-Dec-2013 rmind <rmind@NetBSD.org>

Add shm_open(3) and shm_unlink(3) to support POSIX shared memory objects.
They are implemented using tmpfs (mounted at /var/shm).

Discussed on tech-{kern,userlevel} (quite a while ago).


# fa835e8c 21-Mar-2012 matt <matt@NetBSD.org>

These directories default to WARNS?=5


# 4acff4c0 08-Mar-2012 joerg <joerg@NetBSD.org>

Implement sem_timedwait.


# 5cb3c90e 27-Oct-2011 christos <christos@NetBSD.org>

Add the same ppc64 hack that libposix needs.


# 9921e5b5 07-Jun-2010 jruoho <jruoho@NetBSD.org>

Build links also for mq_timedreceive(3) and mq_timedsend(3).


# dfba418d 07-Jun-2010 jruoho <jruoho@NetBSD.org>

Add mq(3), a manual page for the POSIX message queues. This tries to act as
a short introduction to the rationale and API, noting also some pros and cons.

rmind@: basically ok. Please feel free to a

Add mq(3), a manual page for the POSIX message queues. This tries to act as
a short introduction to the rationale and API, noting also some pros and cons.

rmind@: basically ok. Please feel free to adjust, correct, and extend.

show more ...


# 4e9ea952 17-May-2010 jruoho <jruoho@NetBSD.org>

Add an introductory manual page for the POSIX asynchronous I/O, aio(3).

This is hopefully enough for a reader to get started with the aio.

ok rmind@


# 57babc49 05-Jan-2009 rmind <rmind@NetBSD.org>

Manuals describing the interface of POSIX message queues.
Taken from The Open Group, with various modifications.
Thanks <wiz> for improvements!


# 45ce2fea 26-Oct-2008 mrg <mrg@NetBSD.org>

use libc/libcincludes.mk.


# 2a94bd63 02-Jul-2008 rmind <rmind@NetBSD.org>

Move scheduling functions from librt to libc.
Fixes PR/38657.


# f67f2ea5 10-Mar-2008 rmind <rmind@NetBSD.org>

Add pset(3) manual page, and appropriate links.
Thanks <wiz> for review and fixes!


# 2ac12931 10-Mar-2008 rmind <rmind@NetBSD.org>

Add sched(3) manual page, and appropriate links.
Thanks <wiz> for review and fixes!


# 5c71a4d4 15-Jan-2008 rmind <rmind@NetBSD.org>

Implementation of processor-sets, affinity and POSIX real-time extensions.
Add schedctl(8) - a program to control scheduling of processes and threads.

Notes:
- This is supported only by SCHED_M2;
-

Implementation of processor-sets, affinity and POSIX real-time extensions.
Add schedctl(8) - a program to control scheduling of processes and threads.

Notes:
- This is supported only by SCHED_M2;
- Migration of LWP mechanism will be revisited;

Proposed on: <tech-kern>. Reviewed by: <ad>.

show more ...


# 5fd6c5db 17-Jun-2007 rmind <rmind@NetBSD.org>

- Add aio_fsync(3) manual page. Reviewed and improved by <wiz>.
- Also, fix the accident duplicate of aio_suspend(3) entry.


# ed3e2de2 04-May-2007 rmind <rmind@NetBSD.org>

Add aio_cancel(3), aio_error(3), aio_read(3), aio_return(3), aio_suspend(3),
aio_write(3) and lio_listio(3) man-pages for asynchronous I/O.
Taken from FreeBSD with modifications for NetBSD implementa

Add aio_cancel(3), aio_error(3), aio_read(3), aio_return(3), aio_suspend(3),
aio_write(3) and lio_listio(3) man-pages for asynchronous I/O.
Taken from FreeBSD with modifications for NetBSD implementation.

wizd, please! :)

show more ...


# 67d703cf 30-Apr-2007 rmind <rmind@NetBSD.org>

Import of POSIX Asynchronous I/O.
Seems to be quite stable. Some work still left to do.

Please note, that syscalls are not yet MP-safe, because
of the file and vnode subsystems.

Reviewed by: <tech-

Import of POSIX Asynchronous I/O.
Seems to be quite stable. Some work still left to do.

Please note, that syscalls are not yet MP-safe, because
of the file and vnode subsystems.

Reviewed by: <tech-kern>, <ad>

show more ...


# 37946878 24-Jan-2003 thorpej <thorpej@NetBSD.org>

Add librt, which provides POSIX 1003.1b Real-time extensions not
present in libc. Currently includes 1003.1b semaphores.