Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
        }
    }
};
share|improve this question
1  
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

closed as too localized by Blastfurnace, interjay, Aleks G, ЯegDwight, Dervall Nov 5 '12 at 12:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

The code you have written is not valid C (or C++). I'm not sure what language it is, if any*, but it will definitely never pass a C compiler.

*: It may very well be example code, not written in any specific language at all.

share|improve this answer
Thank you so much for your quick response,,,, The problem is I need it to be implemented in C.... Can anyone help? – Dee M Nov 5 '12 at 6:57
C does not natively have monitors. – duskwuff Nov 5 '12 at 15:13

As @duskwuff pointed out your code is neither C nor C++ compliant/compatible. As to what a monitor it, is a special kind of synchronization object. You can read more about it on wikipedia: http://en.wikipedia.org/wiki/Monitor_(synchronization)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.