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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [tcpip/] [current/] [include/] [sys/] [bsdselect.h] - Blame information for rev 786

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

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