/* Begin include file emacs_data.incl.pl1 */ /* format: style3 */ /**** Created: RMSoley 5 August 1981 ****/ /****^ HISTORY COMMENTS: 1) change(81-11-19,Soley), approve(), audit(), install(): for flags.got_cr 2) change(82-04-15,Soley), approve(), audit(), install(): for tasking.return_label 3) change(82-06-02,Margolin), approve(), audit(), install(): to also include level_info dcl 4) change(84-09-23,Margolin), approve(), audit(), install(): to add emacs_data.arguments.shared_static 5) change(84-11-02,Margolin), approve(), audit(), install(): to add emacs_data.arguments.force 6) change(86-07-16,Margolin), approve(86-07-16,MCR7452), audit(86-11-03,Coren), install(86-11-03,MR12.0-1205): Added emacs_data.flags.turned_on_video and removed the copyright notice (include files aren't supposed to have them). 7) change(87-12-21,Schroth), approve(88-02-29,MCR7851), audit(88-06-06,RBarstad), install(88-08-01,MR12.2-1071): to add extended_ascii flag and extend breaktable for 8bit I/O. END HISTORY COMMENTS */ /* Stuff to manage invocations. */ dcl e_find_invocation_ entry () returns (pointer); dcl emacs_data_ptr pointer; /* emacs_data information structure. */ declare 1 emacs_data aligned based (emacs_data_ptr), 2 next_invocation pointer initial (null ()), /* invoc list */ 2 prev_invocation pointer initial (null ()), 2 frame_ptr pointer initial (null ()), /* cur emx frame */ 2 myname character (32) initial (""), /* emacs name */ 2 env_name character (32) initial (""), /* .sv.lisp name */ 2 log_name character (32) initial (""), /* for write_log */ 2 info_ptr pointer init (null ()), /* emacs_ ip */ 2 status_code fixed bin (35) init (0), /* emacs_ code */ 2 output_iocb pointer init (null ()), /* output IOCBP */ 2 input_iocb pointer init (null ()), /* input IOCBP */ 2 arg_list_ptr pointer init (null ()), 2 flags aligned, 3 debugging bit (1) unaligned init ("0"b),/* debugging */ 3 using_video bit (1) unaligned init ("0"b),/* use vidsys */ 3 in_emacs bit (1) unaligned init ("0"b),/* now inside */ 3 new_arguments bit (1) unaligned init ("0"b),/* have new args */ 3 using_r0_echnego bit (1) unaligned init ("1"b), 3 netsw bit (1) unaligned init ("0"b),/* using net */ 3 messages_were_sent_here bit (1) unal init ("0"b), 3 update_breaktable bit (1) unal init ("1"b), /* need to upd */ 3 got_cr bit (1) unal init ("0"b), /* last char CR */ 3 turned_on_video bit (1) unal init ("0"b), /* automatically turned on video */ 3 extended_ascii bit (1) unal init ("0"b), /* 8-bit chars */ 3 pad2 bit (25) unaligned initial (""b), 2 arguments aligned, 3 ns bit (1) unal, /* -ns */ 3 query bit (1) unal, /* -query */ 3 reset bit (1) unal, /* -reset */ 3 task bit (1) unal, /* -task */ 3 no_task bit (1) unal, /* -no_task */ 3 destroy_task bit (1) unal, /* -destroy_task */ 3 shared_static bit (1) unal, /* -shared_static */ 3 force bit (1) unal, /* -force */ 3 ls fixed bin (17) aligned, /* -ls */ 3 pl fixed bin (17) unal, /* -pl */ 3 ll fixed bin (17) aligned, /* -ll */ 3 apply fixed bin (17) unal, /* 1+argno -ap */ 3 path_count fixed bin (17) aligned, /* # of paths */ 3 ttp character (168) unaligned, /* -ttp given */ 3 first_path pointer, /* ptr to chain */ 2 tasking aligned, 3 task_flags aligned, 4 in_task bit (1) unaligned initial ("0"b), /* tasking on */ 4 destroy bit (1) unaligned initial ("0"b), /* self destruct */ 4 pad1 bit (34) unaligned initial (""b), 3 task_id bit (36) aligned initial (""b), /* task ID */ 3 saved_cl_intermediary entry, /* old CLI */ 3 return_label label, /* for -dtk */ 2 interrupts aligned, 3 head pointer init (null ()), /* of intp chain */ 3 tail pointer init (null ()), /* of intp chain */ 3 array (0:1) fixed bin init ((2) 0), /* lisp/pl1 com */ 2 terminal_type character (256) init (""), /* saved ttp */ 2 tty_modes character (512) init (""), /* orig ttymodes */ 2 linel fixed bin (17) aligned, /* orig linel */ 2 ttyx fixed bin (17) aligned, /* tty index */ 2 netx fixed bin (35), /* net index */ 2 wnetx fixed bin (35), 2 chars_in_obuf fixed bin (21) init (0), /* to be dumped */ 2 echoed fixed bin (21) init (0), /* alrdy echoed */ 2 cgot fixed bin (21) init (0), /* echnego got */ 2 ctook fixed bin (21) init (0), /* took from buf */ 2 edir character (168) init (""), /* emacs dir */ 2 ledir character (168) init (""), /* e log dir */ 2 breaktable (0:255) bit (1) unal init ((256) (1)"1"b), 2 first_msgp pointer init (null ()), 2 last_msgp pointer init (null ()), 2 ibufptr pointer init (null ()), 2 obufptr pointer init (null ()), 2 ospeed fixed binary init (0), 2 level_ptr pointer init (null ()); /* Pathname (for arguments.path, arguments.macro) structure. */ dcl 1 path aligned based, 2 next_path pointer, 2 type fixed bin, 2 name character (168); /* Types of paths. */ dcl MACRO_PATH fixed bin initial (0); dcl FIND_PATH fixed bin initial (1); dcl 1 level_info aligned based, /* describes a level of recursion */ 2 prev_level pointer, 2 tty_modes character (256) unaligned, 2 n_used fixed binary, 2 n_allocated fixed binary, 2 segment_ptrs (n_to_allocate refer (level_info.n_allocated)) pointer; /* END INCLUDE FILE emacs_data.incl.pl1 */ */ ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group Bull including Bull HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell Bull Inc., Groupe Bull and Bull HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, Bull or Bull HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by Bull HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved */