xref: /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/netbsd/time.d (revision 0a3071956a3a9fdebdbf7f338cf2d439b45fc728)
1 //Written in the D programming language
2 
3 /++
4     D header file for NetBSD's extensions to POSIX's time.h.
5 
6     Copyright: Copyright 2014
7     License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
8     Authors:   $(HTTP jmdavisprog.com, Jonathan M Davis)
9 
10     http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/sys/time.h
11  +/
12 module core.sys.netbsd.time;
13 
14 public import core.sys.posix.time;
15 
16 version (NetBSD):
17 
18 enum CLOCK_REALTIME          = 0;
19 enum CLOCK_VIRTUAL           = 1;
20 enum CLOCK_PROF              = 2;
21 enum CLOCK_MONOTONIC         = 3;
22