Skip to content
Snippets Groups Projects
Commit 22330658 authored by rsc's avatar rsc
Browse files

spacing

parent 42494902
No related branches found
No related tags found
No related merge requests found
......@@ -10,10 +10,10 @@
#define PIPESIZE 512
struct pipe {
int readopen; // read fd is still open
int writeopen; // write fd is still open
int writep; // next index to write
int readp; // next index to read
int readopen; // read fd is still open
int writeopen; // write fd is still open
int writep; // next index to write
int readp; // next index to read
struct spinlock lock;
char data[PIPESIZE];
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment