[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]
translator enhancement needed, correction
- To: <dean>
- Subject: translator enhancement needed, correction
- From: Mark S. Miller <mark>
- Date: Fri, 5 Jan 90 20:32:08 PST
- Cc: <xtech>
- In-reply-to: <mark's>, <30>
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?