The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/timers.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * SPDX-License-Identifier: BSD-4-Clause
    3  *
    4  * Copyright (c) 2005 David Xu <davidxu@freebsd.org>
    5  * Copyright (c) 1994 by Chris Provenzano, proven@mit.edu
    6  * All rights reserved.
    7  *
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice, this list of conditions and the following disclaimer.
   13  * 2. 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  * 3. All advertising materials mentioning features or use of this software
   17  *    must display the following acknowledgement:
   18  *  This product includes software developed by Chris Provenzano.
   19  * 4. The name of Chris Provenzano may not be used to endorse or promote
   20  *    products derived from this software without specific prior written
   21  *    permission.
   22  *
   23  * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
   24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   26  * ARE DISCLAIMED.  IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY
   27  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   28  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   29  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   33  * SUCH DAMAGE.
   34  *
   35  * $FreeBSD$
   36  *
   37  * Description : Basic timers header.
   38  */
   39 
   40 #ifndef _SYS_TIMERS_H_
   41 #define _SYS_TIMERS_H_
   42 
   43 #include <sys/time.h>
   44 
   45 #ifdef _KERNEL
   46 /*
   47  * Structures used to manage POSIX timers in a process.
   48  */
   49 struct itimer {
   50         struct mtx              it_mtx;
   51         struct sigevent         it_sigev;
   52         struct itimerspec       it_time;
   53         struct proc             *it_proc;
   54         int     it_flags;
   55         int     it_usecount;
   56         int     it_overrun;             /* Overruns currently accumulating */
   57         int     it_overrun_last;        /* Overruns associated w/ a delivery */
   58         int     it_clockid;
   59         ksiginfo_t      it_ksi;
   60         struct callout it_callout;
   61 };
   62 
   63 #define ITF_DELETING    0x01
   64 #define ITF_WANTED      0x02
   65 #define ITF_PSTOPPED    0x04
   66 
   67 #define TIMER_MAX       32
   68 
   69 #define ITIMER_LOCK(it)         mtx_lock(&(it)->it_mtx)
   70 #define ITIMER_UNLOCK(it)       mtx_unlock(&(it)->it_mtx)
   71 
   72 struct  itimers {
   73         struct itimer           *its_timers[TIMER_MAX];
   74 };
   75 
   76 struct  kclock {
   77         int (*timer_create)(struct itimer *timer);
   78         int (*timer_settime)(struct itimer * timer, int flags,
   79                 struct itimerspec * new_value,
   80                 struct itimerspec * old_value);
   81         int (*timer_delete)(struct itimer * timer);
   82         int (*timer_gettime)(struct itimer * timer,
   83                 struct itimerspec * cur_value);
   84 };
   85 
   86 void    itimers_exec(struct proc *p);
   87 void    itimers_exit(struct proc *p);
   88 int     itimer_accept(struct proc *p, int tid, ksiginfo_t *ksi);
   89 #endif
   90 #endif /* !_SYS_TIMERS_H_ */

Cache object: 18a7df6b39dc1db3899c496aa4388818


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.