[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]

translator enhancement needed, correction



Please make that instead:


I need the following translator enhancement:

When I write in Smalltalk:

	aSema4 critical: [ statement1. statement2 ].

It needs to translate into the C++:

	{
	    MUTEX_BEGIN(aSema4);
	    statement1;
	    statement2;
	}

Until I hear otherwise, I'll go ahead programming in Smalltalk
assuming this enhancement will happen.  Reasonable?