| 102 | } |
| 103 | |
| 104 | void Initialize(){ |
| 105 | Scheduler::CreateChildThread(Scheduler::GetCurrentProcess(), (uintptr_t)InterfaceThread, (uintptr_t)kmalloc(NET_INTERFACE_STACKSIZE) + NET_INTERFACE_STACKSIZE, KERNEL_CS, KERNEL_SS); |
| 106 | } |
| 107 | |
| 108 | void Send(void* data, size_t length){ |
| 109 | mainAdapter->SendPacket(data, length); |
no test coverage detected