Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
Re: CSMA/CD
[CODE]#include<stdio.h> #include<stdlib.h> #include<signal.h> #include<sys/time.h> int x=0; void capture() { exit(0); } int get() { return x; } void put() { x++; } void node(char *p) { int name; int seq1,seq2,i=0; long t; struct timeval tv; struct timezone tz; name=atoi(p); while(1) { seq1=get(); seq2=get(); if(seq1==seq2) { put(); seq1=get(); gettimeofday(&tv,&tz); printf("station %d …
The End.
ryu_hemt_always