I've been asked to compile the code below, but when I try to compile it I get the following error messages:
dee@ubuntu:~/ gcc tr.c
tr.c: In function ‘main’:
tr.c:7:2: error: unknown type name ‘monitor’
tr.c:7:16: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
tr.c:36:1: error: expected declaration or statement at end of input
Excuse my knowledge, but I know nothing about C, so will you guys please help. I think its because it does not know what a monitor is, so how would I get it to work?. The environment I'm using is Ubunto
#include <stdlib.h>
#include <unistd.h>
int main (int argc, char *argv[]) {
monitor tunnel{
int northbound = 0, southbound = 0;
traffic_signal northbound_signal = RED, southbound_signal = RED;
condition busy;
boolean busy = TRUE;
public:
northboundArrival(){
if(southbound > 0) busy.wait;
northbound = northbound+1;
northbound_signal = GREEN;
southbound_signal = RED;
};
southboundArrival(){
if(northbound > 0) busy.wait;
southbound = southbound+1;
southbound_signal = GREEN;
northbound_signal = RED;
};
depart(Direction exit){
if(exit==north){
northbound = northbound-1;
if(northbound==0) while (busy.queue) busy.signal;
};
else if(exit==south){
southbound = southbound-1;
if(southbound==0) while(busy.queue) busy.signal;
}
}
};
public:is used in c++ only. And your code is not a valid C code at all. so many issues there. Just look at once here en.wikipedia.org/wiki/C_%28programming_language%29 – Jeyaram Nov 5 '12 at 6:26