blob: f4596e1ea8dce2761a79514cf6c406319501c921 (
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
|
/*
* Wait for a sync input value from a device.
* $Id$
* Copyright (c) 1997 by Tycho Softworks.
* For conditions of distribution and reuse see product license.
*/
#include <dev/tty.h>
int waitsync(int fd, uchar *list, size_t len, int timeout, ulong max)
{
int key;
int idx;
uchar buf;
while(max--)
{
key = inkey(fd, timeout);
if(key < 0)
return key;
buf = (uchar)(key & 0xff);
for(idx = 0; idx < len; ++idx)
if(list[idx] == buf)
return buf;
}
return -1;
}
|