blob: b52bc541d6fcb53860121cc9647cc9ea592d7c72 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Thread management routine header.
2 * Copyright (C) 1998 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#ifndef _ZEBRA_THREAD_H
23#define _ZEBRA_THREAD_H
24
ajs8b70d0b2005-04-28 01:31:13 +000025struct rusage_t
26{
paul718e3742002-12-13 20:15:29 +000027#ifdef HAVE_RUSAGE
ajs8b70d0b2005-04-28 01:31:13 +000028 struct rusage cpu;
29#endif
30 struct timeval real;
31};
32#define RUSAGE_T struct rusage_t
33
Paul Jakmadb9c0df2006-08-27 06:44:02 +000034#define GETRUSAGE(X) thread_getrusage(X)
paul718e3742002-12-13 20:15:29 +000035
36/* Linked list of thread. */
37struct thread_list
38{
39 struct thread *head;
40 struct thread *tail;
41 int count;
42};
43
44/* Master of the theads. */
45struct thread_master
46{
47 struct thread_list read;
48 struct thread_list write;
49 struct thread_list timer;
50 struct thread_list event;
51 struct thread_list ready;
52 struct thread_list unuse;
paula48b4e62005-04-22 00:43:47 +000053 struct thread_list background;
paul718e3742002-12-13 20:15:29 +000054 fd_set readfd;
55 fd_set writefd;
56 fd_set exceptfd;
57 unsigned long alloc;
58};
59
Paul Jakma41b23732009-06-30 16:12:49 +010060typedef unsigned char thread_type;
61
paul718e3742002-12-13 20:15:29 +000062/* Thread itself. */
63struct thread
64{
Paul Jakma41b23732009-06-30 16:12:49 +010065 thread_type type; /* thread type */
66 thread_type add_type; /* thread type */
paula48b4e62005-04-22 00:43:47 +000067 struct thread *next; /* next pointer of the thread */
paul718e3742002-12-13 20:15:29 +000068 struct thread *prev; /* previous pointer of the thread */
69 struct thread_master *master; /* pointer to the struct thread_master. */
70 int (*func) (struct thread *); /* event function */
71 void *arg; /* event argument */
72 union {
73 int val; /* second argument of the event. */
74 int fd; /* file descriptor in case of read/write. */
75 struct timeval sands; /* rest of time sands value. */
76 } u;
77 RUSAGE_T ru; /* Indepth usage info. */
Paul Jakmacc8b13a2006-07-25 20:40:40 +000078 struct cpu_thread_history *hist; /* cache pointer to cpu_history */
paule04ab742003-01-17 23:47:00 +000079 char* funcname;
80};
81
ajs8b70d0b2005-04-28 01:31:13 +000082struct cpu_thread_history
83{
paule04ab742003-01-17 23:47:00 +000084 int (*func)(struct thread *);
hasso8c328f12004-10-05 21:01:23 +000085 const char *funcname;
paule04ab742003-01-17 23:47:00 +000086 unsigned int total_calls;
ajs8b70d0b2005-04-28 01:31:13 +000087 struct time_stats
88 {
89 unsigned long total, max;
90 } real;
91#ifdef HAVE_RUSAGE
92 struct time_stats cpu;
93#endif
Paul Jakma41b23732009-06-30 16:12:49 +010094 thread_type types;
paul718e3742002-12-13 20:15:29 +000095};
96
Paul Jakmadb9c0df2006-08-27 06:44:02 +000097/* Clocks supported by Quagga */
98enum quagga_clkid {
99 QUAGGA_CLK_REALTIME = 0, /* ala gettimeofday() */
100 QUAGGA_CLK_MONOTONIC, /* monotonic, against an indeterminate base */
101 QUAGGA_CLK_REALTIME_STABILISED, /* like realtime, but non-decrementing */
102};
103
paul718e3742002-12-13 20:15:29 +0000104/* Thread types. */
105#define THREAD_READ 0
106#define THREAD_WRITE 1
107#define THREAD_TIMER 2
108#define THREAD_EVENT 3
109#define THREAD_READY 4
paula48b4e62005-04-22 00:43:47 +0000110#define THREAD_BACKGROUND 5
111#define THREAD_UNUSED 6
112#define THREAD_EXECUTE 7
paul718e3742002-12-13 20:15:29 +0000113
114/* Thread yield time. */
paul17fc1282005-04-22 00:57:03 +0000115#define THREAD_YIELD_TIME_SLOT 10 * 1000L /* 10ms */
paul718e3742002-12-13 20:15:29 +0000116
117/* Macros. */
118#define THREAD_ARG(X) ((X)->arg)
119#define THREAD_FD(X) ((X)->u.fd)
120#define THREAD_VAL(X) ((X)->u.val)
121
122#define THREAD_READ_ON(master,thread,func,arg,sock) \
123 do { \
124 if (! thread) \
125 thread = thread_add_read (master, func, arg, sock); \
126 } while (0)
127
128#define THREAD_WRITE_ON(master,thread,func,arg,sock) \
129 do { \
130 if (! thread) \
131 thread = thread_add_write (master, func, arg, sock); \
132 } while (0)
133
134#define THREAD_TIMER_ON(master,thread,func,arg,time) \
135 do { \
136 if (! thread) \
137 thread = thread_add_timer (master, func, arg, time); \
138 } while (0)
139
140#define THREAD_OFF(thread) \
141 do { \
142 if (thread) \
143 { \
144 thread_cancel (thread); \
145 thread = NULL; \
146 } \
147 } while (0)
148
149#define THREAD_READ_OFF(thread) THREAD_OFF(thread)
150#define THREAD_WRITE_OFF(thread) THREAD_OFF(thread)
151#define THREAD_TIMER_OFF(thread) THREAD_OFF(thread)
152
paule04ab742003-01-17 23:47:00 +0000153#define thread_add_read(m,f,a,v) funcname_thread_add_read(m,f,a,v,#f)
154#define thread_add_write(m,f,a,v) funcname_thread_add_write(m,f,a,v,#f)
155#define thread_add_timer(m,f,a,v) funcname_thread_add_timer(m,f,a,v,#f)
jardin9e867fe2003-12-23 08:56:18 +0000156#define thread_add_timer_msec(m,f,a,v) funcname_thread_add_timer_msec(m,f,a,v,#f)
paule04ab742003-01-17 23:47:00 +0000157#define thread_add_event(m,f,a,v) funcname_thread_add_event(m,f,a,v,#f)
158#define thread_execute(m,f,a,v) funcname_thread_execute(m,f,a,v,#f)
ajsfb9e46b2005-04-22 14:23:34 +0000159
160/* The 4th arg to thread_add_background is the # of milliseconds to delay. */
paula48b4e62005-04-22 00:43:47 +0000161#define thread_add_background(m,f,a,v) funcname_thread_add_background(m,f,a,v,#f)
paule04ab742003-01-17 23:47:00 +0000162
paul718e3742002-12-13 20:15:29 +0000163/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000164extern struct thread_master *thread_master_create (void);
165extern void thread_master_free (struct thread_master *);
166
167extern struct thread *funcname_thread_add_read (struct thread_master *,
168 int (*)(struct thread *),
169 void *, int, const char*);
170extern struct thread *funcname_thread_add_write (struct thread_master *,
171 int (*)(struct thread *),
172 void *, int, const char*);
173extern struct thread *funcname_thread_add_timer (struct thread_master *,
174 int (*)(struct thread *),
175 void *, long, const char*);
176extern struct thread *funcname_thread_add_timer_msec (struct thread_master *,
177 int (*)(struct thread *),
178 void *, long, const char*);
179extern struct thread *funcname_thread_add_event (struct thread_master *,
180 int (*)(struct thread *),
181 void *, int, const char*);
182extern struct thread *funcname_thread_add_background (struct thread_master *,
183 int (*func)(struct thread *),
ajsfb9e46b2005-04-22 14:23:34 +0000184 void *arg,
185 long milliseconds_to_delay,
186 const char *funcname);
paul8cc41982005-05-06 21:25:49 +0000187extern struct thread *funcname_thread_execute (struct thread_master *,
188 int (*)(struct thread *),
189 void *, int, const char *);
190extern void thread_cancel (struct thread *);
pauldc818072005-05-19 01:30:53 +0000191extern unsigned int thread_cancel_event (struct thread_master *, void *);
paul8cc41982005-05-06 21:25:49 +0000192extern struct thread *thread_fetch (struct thread_master *, struct thread *);
193extern void thread_call (struct thread *);
194extern unsigned long thread_timer_remain_second (struct thread *);
195extern int thread_should_yield (struct thread *);
paul718e3742002-12-13 20:15:29 +0000196
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000197/* Internal libzebra exports */
198extern void thread_getrusage (RUSAGE_T *);
paule04ab742003-01-17 23:47:00 +0000199extern struct cmd_element show_thread_cpu_cmd;
200
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000201/* replacements for the system gettimeofday(), clock_gettime() and
202 * time() functions, providing support for non-decrementing clock on
203 * all systems, and fully monotonic on /some/ systems.
204 */
205extern int quagga_gettime (enum quagga_clkid, struct timeval *);
206extern time_t quagga_time (time_t *);
207
ajs8b70d0b2005-04-28 01:31:13 +0000208/* Returns elapsed real (wall clock) time. */
209extern unsigned long thread_consumed_time(RUSAGE_T *after, RUSAGE_T *before,
210 unsigned long *cpu_time_elapsed);
211
212/* Global variable containing a recent result from gettimeofday. This can
213 be used instead of calling gettimeofday if a recent value is sufficient.
214 This is guaranteed to be refreshed before a thread is called. */
215extern struct timeval recent_time;
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000216/* Similar to recent_time, but a monotonically increasing time value */
217extern struct timeval recent_relative_time (void);
paul718e3742002-12-13 20:15:29 +0000218#endif /* _ZEBRA_THREAD_H */