mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-05-01 06:09:45 +08:00
14 lines
224 B
C
14 lines
224 B
C
#include "ns.h"
|
|
|
|
extern union Nsipc nsipcbuf;
|
|
|
|
void
|
|
output(envid_t ns_envid)
|
|
{
|
|
binaryname = "ns_output";
|
|
|
|
// LAB 6: Your code here:
|
|
// - read a packet from the network server
|
|
// - send the packet to the device driver
|
|
}
|