blob: df8df1eb449ef34023e10d44e2567f2da8da15cf (
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
33
34
35
|
#include <dde26.h> /* l4dde26_*() */
#include <dde26_net.h> /* l4dde26 networking */
#include <linux/netdevice.h> /* struct sk_buff */
#include <linux/pci.h> /* pci_unregister_driver() */
#include <linux/init.h> // initcall()
#include <linux/delay.h> // msleep()
#include <hurd/machdev.h>
int using_std = 1;
int main(int argc, char **argv)
{
pthread_t thread;
l4dde26_init();
l4dde26_process_init();
l4dde26_softirq_init();
printk("Initializing skb subsystem\n");
skb_init();
l4dde26_do_initcalls();
register_net();
mach_device_init();
trivfs_init();
pthread_create (&thread, NULL, ds_server, NULL);
pthread_detach (thread);
trivfs_server();
return 0;
}
|