Real-Time Systems and Programming Languages

Errata


The following errors have been found in the second (and first) print run of the Third Edition:

TIMER_SETTIME ( periodic_timer, TIMER_ABSTIME, & required, & old);

The following errors have been found in the first printing of the Third Edition
 

                If no precision is given, the language requires an implementation
                to choose a safe range.                 public Element remove() // visible method
                {
                    if(!empty()) {
                        Element tmpE = front.data;
                        front = front.next;
                        if(empty()) back = null;
                    }
                    // garbage collection will free up the QueueNode object
                    // which is now dangling
                    return tmpE;
                }