OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [ecos-2.0/] [packages/] [net/] [tcpip/] [v2_0/] [include/] [sys/] [bsdselect.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1254 phoenix
//==========================================================================
2
//
3
//      include/sys/select.h
4
//
5
//      Support for 'select()' system call
6
//
7
//==========================================================================
8
//####BSDCOPYRIGHTBEGIN####
9
//
10
// -------------------------------------------
11
//
12
// Portions of this software may have been derived from OpenBSD or other sources,
13
// and are covered by the appropriate copyright disclaimers included herein.
14
//
15
// -------------------------------------------
16
//
17
//####BSDCOPYRIGHTEND####
18
//==========================================================================
19
//#####DESCRIPTIONBEGIN####
20
//
21
// Author(s):    gthomas
22
// Contributors: gthomas
23
// Date:         2000-01-10
24
// Purpose:      
25
// Description:  
26
//              
27
//
28
//####DESCRIPTIONEND####
29
//
30
//==========================================================================
31
 
32
#ifndef _SYS_SELECT_H_
33
#define _SYS_SELECT_H_
34
 
35
#include <pkgconf/system.h>
36
 
37
#ifdef CYGPKG_IO_FILEIO
38
 
39
#include <cyg/io/file.h>
40
 
41
void    selwakeup __P((struct selinfo *));
42
 
43
#else
44
 
45
/*
46
 * Used to maintain information about processes that wish to be
47
 * notified when I/O becomes possible.
48
 */
49
struct selinfo {
50
    void *unused;
51
};
52
 
53
void    selrecord __P((void *selector, struct selinfo *));
54
void    selwakeup __P((struct selinfo *));
55
 
56
#endif
57
 
58
#endif /* !_SYS_SELECT_H_ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.