home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-03-13 | 475 b | 22 lines | [TEXT/KAHL] |
- /* Kevo -- a prototype-based object-oriented language */
- /* (c) Antero Taivalsaari 1991-1993 */
- /* Some parts (c) Antero Taivalsaari 1986-1988 */
- /* kernel.h: Lowest-level internals */
-
- int* dataStackBottom();
- int** returnStackBottom();
- int** contextStackBottom();
-
- void resetData();
- void resetReturn();
- void resetContext();
- void initStacks();
-
- void yield();
-
- void preemptiveInterpreter();
- void cooperativeInterpreter();
-
- void ownLongJmp();
- void execute();
-