File: wait.h

package info (click to toggle)
ust 2.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,360 kB
  • sloc: ansic: 33,193; sh: 5,404; java: 1,898; makefile: 1,198; python: 701; cpp: 177
file content (50 lines) | stat: -rw-r--r-- 1,392 bytes parent folder | download | duplicates (5)
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
48
49
50
#ifndef _UST_WAIT_H
#define _UST_WAIT_H

/*
 * Copyright (C) 2011  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; version 2.1 of
 * the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
 */

#include <poll.h>

/*
 * Wait until "cond" gets true or timeout (in ms).
 */
#define wait_cond_interruptible_timeout(_cond, _timeout)	\
	({							\
		int __ret = 0, __pollret;			\
		int __timeout = _timeout;			\
								\
		for (;;) {					\
			if (_cond)				\
				break;				\
			if (__timeout <= 0) {			\
				__ret = -ETIMEDOUT;		\
				break;				\
			}					\
			__pollret = poll(NULL, 0, 10);	/* wait 10ms */	\
			if (__pollret < 0) {			\
				__ret = -errno;			\
				break;				\
			}					\
			__timeout -= 10;			\
		}						\
		__ret;						\
	})


#endif /* _UST_WAIT_H */