summaryrefslogtreecommitdiff
path: root/ppsthread.h
blob: ae7bd88625b86e6b7b5190cdbe795f5837925139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * This file is Copyright (c) 2015 by the GPSD project
 * BSD terms apply: see the file COPYING in the distribution root for details.
 */

#ifndef PPSTHREAD_H
#define PPSTHREAD_H

#include <stdbool.h>
#include <time.h>
#include <sys/time.h>
#include <sys/ipc.h>
#include <sys/shm.h>

#ifndef HAVE_TIMEDELTA

struct timedelta_t {
    struct timespec	real;
    struct timespec	clock;
};

#define HAVE_TIMEDELTA
#endif /* HAVE_TIMEDELTA */

struct pps_state_t {
    volatile struct timedelta_t ppslast;
    volatile int ppscount;
};

struct pps_fixtime_t {
    timestamp_t real;
    /* clock must be a timespec as it is in nSec and
     * a timestamp_t will lose precision */
    struct timespec clock; /* system clock time when last fix received */
};

#define PPS_THREAD_OK	0
#define PPS_LOCK_ERR	-1
#define PPS_UNLOCK_ERR	-2

extern int pps_thread_stash_fixtime(volatile struct pps_fixtime_t *, 
			      timestamp_t, struct timespec);
extern int pps_thread_lastpps(struct pps_state_t *, struct timedelta_t *);

#endif /* PPSTHREAD_H */

/* end */