source: rtems/c/src/libnetworking/rtems/rtems_bsdnet_internal.h @ ecec2ba

4.104.114.84.95
Last change on this file since ecec2ba was ecec2ba, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/99 at 00:29:23

Patch from Eric Norum to correct bug induced by select() patch.

  • Property mode set to 100644
File size: 5.0 KB
Line 
1/*
2 * Declarations to fit FreeBSD to RTEMS.
3 *
4 *******************************************************************
5 *                            WARNING                              *
6 * This file should *never* be included by any application program *
7 *******************************************************************
8 *
9 *  $Id$
10 */
11
12#ifndef _RTEMS_BSDNET_INTERNAL_H_
13#define _RTEMS_BSDNET_INTERNAL_H_
14
15typedef unsigned int            vm_offset_t;
16typedef long long               vm_ooffset_t;
17typedef unsigned int            vm_pindex_t;
18typedef unsigned int            vm_size_t;
19
20#define _BSD_OFF_T_     rtems_signed32
21#define _BSD_PID_T_     rtems_id
22#define _BSD_VA_LIST_   char *
23
24/* make sure we get the network versions of these */
25#include "../machine/types.h"
26#include "../machine/param.h"
27
28#include <sys/time.h>
29struct  itimerval {
30  struct  timeval it_interval;
31  struct  timeval it_value;
32};
33struct mdproc {
34        int     md_flags;
35        int     *md_regs;
36};
37
38#define USHRT_MAX       65535
39
40/*
41 * Other RTEMS/BSD glue
42 */
43struct socket;
44extern int soconnsleep (struct socket *so);
45extern void soconnwakeup (struct socket *so);
46#define splnet()        0
47#define splimp()        0
48#define splx(_s)        do { (_s) = 0; } while(0)
49
50#define ovbcopy(f,t,n) bcopy(f,t,n)
51#define copyout(f,t,n) (memcpy(t,f,n),0)
52#define copyin(f,t,n) (memcpy(t,f,n),0)
53
54#define random()        rtems_bsdnet_random()
55#define panic   rtems_panic
56#define suser(a,b)      0
57
58void    microtime (struct timeval *tv);
59#define hz rtems_bsdnet_ticks_per_second
60#define tick rtems_bsdnet_microseconds_per_tick
61
62#define SHRT_MAX 65535
63
64#define log     rtems_bsdnet_log
65
66/*
67 * Since we can't have two sys/types.h files, we'll hack around
68 * and copy the contents of the BSD sys/types.h to here....
69 */
70#include <sys/cdefs.h>
71
72typedef u_int64_t       u_quad_t;       /* quads */
73typedef int64_t         quad_t;
74typedef quad_t *        qaddr_t;
75
76typedef void __sighandler_t __P((int));
77typedef __sighandler_t  *sig_t; /* type of pointer to a signal function */
78#define NSIG    32
79struct  sigaltstack {
80        char    *ss_sp;                 /* signal stack base */
81        int     ss_size;                /* signal stack length */
82        int     ss_flags;               /* SS_DISABLE and/or SS_ONSTACK */
83};
84
85#ifdef KERNEL
86typedef int             boolean_t;
87typedef struct vm_page  *vm_page_t;
88#endif
89
90#ifndef _POSIX_SOURCE
91/*
92 * minor() gives a cookie instead of an index since we don't want to
93 * change the meanings of bits 0-15 or waste time and space shifting
94 * bits 16-31 for devices that don't use them.
95 */
96#define major(x)        ((int)(((u_int)(x) >> 8)&0xff)) /* major number */
97#define minor(x)        ((int)((x)&0xffff00ff))         /* minor number */
98#define makedev(x,y)    ((dev_t)(((x) << 8) | (y)))     /* create dev_t */
99#endif
100
101#include <machine/endian.h>
102
103typedef quad_t          rlim_t;         /* resource limit */
104typedef u_int32_t       fixpt_t;        /* fixed point number */
105
106/*
107 * Forward structure declarations for function prototypes.  We include the
108 * common structures that cross subsystem boundaries here; others are mostly
109 * used in the same place that the structure is defined.
110 */
111struct  proc;
112struct  pgrp;
113struct  ucred;
114struct  rusage;
115struct  file;
116struct  buf;
117struct  tty;
118struct  uio;
119
120/*
121 * Redo kernel memory allocation
122 */
123#define malloc rtems_bsdnet_malloc
124#define free rtems_bsdnet_free
125
126#define M_NOWAIT        0x0001
127void *rtems_bsdnet_malloc (unsigned long size, int type, int flags);
128void rtems_bsdnet_free (void *addr, int type);
129
130void rtems_bsdnet_semaphore_obtain (void);
131void rtems_bsdnet_semaphore_release (void);
132void rtems_bsdnet_schednetisr (int n);
133
134unsigned long rtems_bsdnet_seconds_since_boot (void);
135unsigned long rtems_bsdnet_random (void);
136
137rtems_id rtems_bsdnet_newproc (
138  char  *name,
139  int   stacksize,
140  void  (*entry)(void *),
141  void  *arg
142);
143
144rtems_status_code rtems_bsdnet_event_receive (
145  rtems_event_set  event_in,
146  rtems_option     option_set,
147  rtems_interval   ticks,
148  rtems_event_set *event_out
149);
150
151/*
152 * Network configuration
153 */
154extern int rtems_bsdnet_ticks_per_second;
155extern int rtems_bsdnet_microseconds_per_tick;
156extern struct in_addr rtems_bsdnet_log_host_address;
157extern char *rtems_bsdnet_domain_name;
158extern struct in_addr rtems_bsdnet_nameserver[];
159extern int rtems_bsdnet_nameserver_count;
160
161/*
162 * Internal IOCTL command
163 */
164#define SIO_RTEMS_SHOW_STATS    _IO('i', 250)
165
166/*
167 * Some extra prototypes
168 */
169int sethostname (char *name, size_t namelen);
170void domaininit (void *);
171void ifinit (void *);
172void ipintr (void);
173void arpintr (void);
174void bootpc_init(void);
175int socket (int, int, int);
176int ioctl (int, unsigned long, ...);
177struct socket *rtems_bsdnet_fdToSocket (int fd);
178int rtems_bsdnet_makeFdForSocket (void *);
179
180/*
181 * Events used by networking routines.
182 * Everything will break if the application
183 * tries to use these events or if the `sleep'
184 * events are equal to any of the NETISR * events.
185 */
186#define SBWAIT_EVENT   RTEMS_EVENT_24
187#define SOSLEEP_EVENT  RTEMS_EVENT_25
188#define NETISR_IP_EVENT                (1 << NETISR_IP)
189#define NETISR_ARP_EVENT       (1 << NETISR_ARP)
190#define NETISR_EVENTS  (NETISR_IP_EVENT|NETISR_ARP_EVENT)
191#if (SBWAIT_EVENT & SOSLEEP_EVENT & NETISR_EVENTS)
192# error "Network event conflict"
193#endif
194
195#endif /* _RTEMS_BSDNET_INTERNAL_H_ */
Note: See TracBrowser for help on using the repository browser.