source: mainline/uspace/lib/c/include/sys/time.h@ 053fc2b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 053fc2b was 235d31d, checked in by Jakub Jermar <jakub@…>, 11 years ago

Merge the CHT pre-integration branch

This branch contains:

  • the merge of lp:~adam-hraska+lp/helenos/rcu, which brings:
  • a new preemptible kernel RCU variant called A-RCU,
  • a preemptible variant of Podzimek's non-preemptible kernel RCU and
  • a new variant of usersace RCU,
  • a new concurrent hash table (CHT) implementation based on RCU,
  • a deployment of CHT in kernel futex handling,
  • a deployment of the userspace RCU in the implementation of upgradable futexes,

all described in Adam Hraska's master thesis named Read-Copy-Update
for HelenOS, defended in 2013 at MFF UK; furthemore, the branch
fixes two synchronization bugs in condvars and waitq, respectively:

  • revid:adam.hraska+hos@gmail.com-20121116144921-3to9u1tn1sg07rg7
  • revid:adam.hraska+hos@gmail.com-20121116173623-km7gwtqixwudpe66
  • build fixes required to pass make check
  • overhaul of ia64 and sparc64 trap handling, to allow exc_dispatch() to be used now when the kernel is more picky about CPU state accounting
  • an important fix of the sparc64/sun4v preemptible trap handler
  • various other fixes of issues discovered on non-x86 architectures
  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[f25b73d6]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[f8b6d34c]3 * Copyright (c) 2011 Petr Koupy
4 * Copyright (c) 2011 Jiri Zarevucky
[f25b73d6]5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * - Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * - The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[b2951e2]29 */
30
[fadd381]31/** @addtogroup libc
[b2951e2]32 * @{
33 */
34/** @file
[e2ae2fc]35 */
[f25b73d6]36
[813a703]37#ifndef LIBC_SYS_TIME_H_
38#define LIBC_SYS_TIME_H_
[f25b73d6]39
[5d4e90f0]40#include <sys/types.h>
[f25b73d6]41
[1ab8539]42#define DST_NONE 0
43#define ASCTIME_BUF_LEN 26
[f25b73d6]44
[86029498]45typedef long time_t;
46typedef long suseconds_t;
[f25b73d6]47
[f3b4051]48typedef uint32_t useconds_t;
49typedef uint32_t mseconds_t;
50
[8d2963d]51struct tm {
[1ab8539]52 int tm_sec; /* Seconds [0,60]. */
53 int tm_min; /* Minutes [0,59]. */
54 int tm_hour; /* Hour [0,23]. */
55 int tm_mday; /* Day of month [1,31]. */
56 int tm_mon; /* Month of year [0,11]. */
57 int tm_year; /* Years since 1900. */
58 int tm_wday; /* Day of week [0,6] (Sunday = 0). */
59 int tm_yday; /* Day of year [0,365]. */
60 int tm_isdst; /* Daylight Savings flag. */
[8d2963d]61};
62
[f25b73d6]63struct timeval {
[e2ae2fc]64 time_t tv_sec; /* seconds */
65 suseconds_t tv_usec; /* microseconds */
[f25b73d6]66};
67
68struct timezone {
[e2ae2fc]69 int tz_minuteswest; /* minutes W of Greenwich */
70 int tz_dsttime; /* type of dst correction */
[f25b73d6]71};
72
[1ab8539]73extern void tv_add(struct timeval *, suseconds_t);
74extern suseconds_t tv_sub(struct timeval *, struct timeval *);
75extern int tv_gt(struct timeval *, struct timeval *);
76extern int tv_gteq(struct timeval *, struct timeval *);
77extern void gettimeofday(struct timeval *, struct timezone *);
78extern void getuptime(struct timeval *);
[f25b73d6]79
[5fd3f2d]80extern void udelay(useconds_t);
[1b7eec9]81extern int usleep(useconds_t);
[5b3394c]82
[1ab8539]83extern time_t mktime(struct tm *);
84extern int time_utc2tm(const time_t, struct tm *);
85extern int time_utc2str(const time_t, char *);
86extern void time_tm2str(const struct tm *, char *);
87extern int time_local2tm(const time_t, struct tm *);
88extern int time_local2str(const time_t, char *);
89extern double difftime(time_t, time_t);
90extern size_t strftime(char *restrict, size_t, const char *restrict,
91 const struct tm *restrict);
[5fd3f2d]92
[f25b73d6]93#endif
[b2951e2]94
[fadd381]95/** @}
[b2951e2]96 */
Note: See TracBrowser for help on using the repository browser.