mirror of
https://github.com/apache/nuttx.git
synced 2026-09-07 17:36:38 +00:00
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@110 42af7a65-404d-4744-a932-0658087f49c3
120 lines
5.5 KiB
C
120 lines
5.5 KiB
C
/********************************************************************************
|
|
* timer_create.c
|
|
*
|
|
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name Gregory Nutt nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Included Files
|
|
********************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
|
|
#ifdef CONFIG_POSIX_TIMERS
|
|
|
|
/********************************************************************************
|
|
* Definitions
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Private Data
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Public Data
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Private Functions
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Public Functions
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* Function: timer_create
|
|
*
|
|
* Description:
|
|
* The timer_create() function creates per-thread timer using the specified
|
|
* clock, clock_id, as the timing base. The timer_create() function returns, in
|
|
* the location referenced by timerid, a timer ID of type timer_t used to identify
|
|
* the timer in timer requests. This timer ID is unique until the timer is
|
|
* deleted. The particular clock, clock_id, is defined in <time.h>. The timer
|
|
* whose ID is returned will be in a disarmed state upon return from
|
|
* timer_create().
|
|
*
|
|
* The evp argument, if non-NULL, points to a sigevent structure. This structure
|
|
* is allocated by the called and defines the asynchronous notification to occur.
|
|
* If the evp argument is NULL, the effect is as if the evp argument pointed to
|
|
* a sigevent structure with the sigev_notify member having the value SIGEV_SIGNAL,
|
|
* the sigev_signo having a default signal number, and the sigev_value member
|
|
* having the value of the timer ID.
|
|
*
|
|
* Each implementation defines a set of clocks that can be used as timing bases
|
|
* for per-thread timers. All implementations shall support a clock_id of
|
|
* CLOCK_REALTIME.
|
|
*
|
|
* Parameters:
|
|
* clockid - Specifies the clock to use as the timing base.
|
|
* evp - Refers to a user allocated sigevent structure that defines the
|
|
* asynchronous notification. evp may be NULL (see above).
|
|
* timerid - The pre-thread timer created by the call to timer_create().
|
|
*
|
|
* Return Value:
|
|
* If the call succeeds, timer_create() will return 0 (OK) and update the
|
|
* location referenced by timerid to a timer_t, which can be passed to the
|
|
* other per-thread timer calls. If an error occurs, the function will return
|
|
* a value of -1 (ERROR) and set errno to indicate the error.
|
|
*
|
|
* EAGAIN - The system lacks sufficient signal queuing resources to honor the
|
|
* request.
|
|
* EAGAIN - The calling process has already created all of the timers it is
|
|
* allowed by this implementation.
|
|
* EINVAL - The specified clock ID is not defined.
|
|
* ENOTSUP - The implementation does not support the creation of a timer attached
|
|
* to the CPU-time clock that is specified by clock_id and associated with a
|
|
* thread different thread invoking timer_create().
|
|
*
|
|
* Assumptions:
|
|
*
|
|
********************************************************************************/
|
|
|
|
int timer_create(clockid_t clockid, FAR struct sigevent *evp, FAR timer_t *timerid)
|
|
{
|
|
#warning "Not Implemented"
|
|
return ENOTSUP;
|
|
}
|
|
|
|
#endif /* CONFIG_POSIX_TIMERS */
|