1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
|
Thu Sep 26 14:21:01 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* tioctl.defs (tioctl_tiocext): Add missing "mode" arg.
Tue Sep 10 11:11:20 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makefile (INSTHDRS): Omit `version.h'.
Thu Sep 5 10:39:40 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* version.h: File removed.
Wed Jul 17 14:30:36 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* Makefile: gs/install-hdrs/install-headers/g.
Tue Jul 16 11:37:35 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* Makefile (INSTHDRS): Repair syntax.
(install-hdrs install): Correctly form pathname.
Sat Jul 13 20:55:59 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* Makefile: Rewritten to get the right things installed in the
right places.
* Makefile (install-hdrs): New target; eq to install.
Mon Jul 1 16:28:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* crash.defs (crash_dump_task): Use integer_t for sigcode. Add exc,
code, subcode, cttyid_port args.
Wed Jun 12 15:56:49 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* startup_notify.defs (subsystem declaration): Use correct value
29500 from subsystems file.
Sat May 25 17:09:00 1996 Miles Bader <miles@gnu.ai.mit.edu>
* msg_request.defs (msg_sig_post_request,
msg_sig_post_untraced_request): Add SIGCODE argument.
Wed May 22 18:50:14 1996 Miles Bader <miles@gnu.ai.mit.edu>
* process_reply.defs (proc_wait_reply): Add SIGCODE argument.
Tue May 14 17:39:24 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Makefile (install): Depend on $(includedir)/hurd and add rule to
create it.
Sat May 11 17:32:20 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Makefile: Quick hack for installing headers prior to building libc.
(hdrs): New variable, do wildcarding in $(srcdir).
(DIST_FILES): Use that.
(install): Install $(hdrs) in $(includedir)/hurd from $(srcdir).
Thu May 9 12:44:43 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* Makefile (DIST_FILES): Reference *.h, instead of individual
files.
* Makefile (REMHDRS, dohdrs): Deleted targets.
Tue May 7 12:54:19 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* io.defs (io_identity): Server passes back fs id port and st_ino
value.
Mon May 6 15:28:50 1996 Miles Bader <miles@gnu.ai.mit.edu>
* msg.defs (msg_describe_ports): New rpc.
* fs.defs (file_get_storage_info): Change arguments & comment.
Mon May 6 13:31:04 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* version.h (hurd_versions): Add version 0.0.
* hurd_types.h (HURD_RELEASE): Update to 0.0.
* hurd_types.h (struct procinfo): Add exitstatus and sigcode
members.
* hurd_types.h (FSTYPE_SOCKET): Doc fix.
* hurd_types.h (retry_type) [FS_RETRY_REAUTH]: Doc fix.
* hurd_types.h (file_storage_class): Add STORAGE_NULL,
STORAGE_CONCAT, STORAGE_INTERLEAVE, and STORAGE_LAYER.
* hurd_types.h (struct fsys_statfsbuf): Delete type.
(fsys_statfsbuf_t): Now based upon struct statfs.
* hurd_types.defs (fsys_statfsbuf_t): Now 16 long.
Import <sys/statfs.h>.
* fsys.defs (fsys_get_options): Add RPT.
* startup_notify.defs: New file.
* startup.defs (startup_request_notification): NOTIFY_PORT now
mach_port_send_t. New arg NAME.
* subsystems: Add startup_notify.
* process.defs (proc_getprocinfo): Make FLAGS inout.
* process.defs (proc_get_tty): New RPC.
* process_request.defs (proc_get_tty_request): Likewise.
* process.defs (proc_mark_stop, proc_mark_exit): Add SIGCODE arg.
(proc_wait): Return SIGCODE parm too.
* process_request.defs (proc_mark_stop_request,
proc_mark_exit_request): Likewise.
* process.defs (proc_setowner): Add CLEAR parm.
* process_request.defs (proc_setowner_request): Likewise.
* process.defs (proc_setmsgport): Return old message port with
mach_port_send_t to permit more flexibility in proc server.
* fs.defs (file_sync): New parm `omit_metadata'.
(dir_link, dir_rename): Add parm `excl'.
* io.defs (io_verify_identity): Delete RPC.
(io_identity): New RPC.
Fri May 3 16:56:22 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* hurd_types.h (EXEC_INHERITED): Macro removed.
(EXEC_TRACED): Macro removed.
(INIT_TRACEMASK): New enum constant.
* msg.defs (msg_*_exec_flags): RPCs removed.
* msg.defs (msg_sig_post, msg_sig_post_untraced): Add SIGCODE arg.
(msg_startup_dosync): RPC removed.
* io.defs (io_select): Remove ID_TAG arg.
(io_verify_identity): New RPC.
* auth.defs (auth_user_authenticate, auth_server_authenticate): Remove
second rendezvous port arg, leaving just one, of type mach_port_send_t.
Tue Apr 30 13:54:34 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* auth.defs: Mark with INTR_INTERFACE.
(auth_user_authenticate): Remove sreplyport arg.
Sun Apr 28 19:13:42 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* interrupt.defs: Remove 1 second waittime spec.
(interrupt_operation): Add waittime arg.
* msg.defs (msg_startup_dosync): Add waittime arg.
Thu Apr 25 16:27:20 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* pfinet.defs: New file.
* subsystems: Added pfinet.
Fri Feb 9 11:30:08 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* tioctl.defs: Import hurd/ioctl_types.h with <> instead of "".
Thu Feb 8 20:35:34 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* ioctl_types.h: Protect from multiple inclusion.
Tue Dec 26 17:47:03 1995 Miles Bader <miles@gnu.ai.mit.edu>
* io.defs (io_select): Fix ifdefs around the reply port decls to
work properly when the server side ports are desired.
Wed Dec 20 15:21:41 1995 Miles Bader <miles@gnu.ai.mit.edu>
* process.defs (proc_getsidport): Use mach_port_send_t instead of
mach_port_make_send_t.
Tue Dec 19 18:28:35 1995 Miles Bader <miles@gnu.ai.mit.edu>
* process.defs (proc_getsidport): Make SESSPORT's type
mach_port_make_send_t, since proc always just holds a receive right.
Mon Dec 11 15:21:42 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* Makefile (DIST_FILES): Added netfs.h.
(REMHDRS): Added ../libnetfs/netfs.h.
Fri Dec 1 15:45:11 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* tioctl.defs (tioctl_tiocsig): Needs one int arg.
Tue Nov 21 09:58:13 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* interrupt.defs (interrupt_operation): Include SEQNO server
argument.
Mon Nov 20 18:26:52 1995 Miles Bader <miles@gnu.ai.mit.edu>
* msg_request.defs: Add skip for `Obsolete io_select_done'
to match msg.defs.
* msg_reply.defs: Ditto.
Sat Nov 18 23:33:55 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* crash.defs (crash_dump_task): Add sreplyport arg.
* crash_reply.defs: New file.
Mon Nov 13 15:05:04 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* exec.defs (exec_startup): RPC removed; replaced with skip.
Fri Nov 10 10:02:17 1995 Miles Bader <miles@gnu.ai.mit.edu>
* process_request.defs: New file.
Sat Nov 4 23:15:01 1995 Miles Bader <miles@gnu.ai.mit.edu>
* fsys_reply.defs (fsys_startup_reply, fsys_get_options_reply): Tyop.
Tue Oct 31 15:54:20 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* hurd_types.h: Add missing */.
Tue Oct 31 14:14:39 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* process.defs (proc_getprocinfo): New parm THREADWAITS.
Tue Oct 31 02:23:55 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* msg.defs (msg_report_wait): Add string out arg.
Mon Oct 30 10:41:06 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* hurd_types.h (PI_FETCH_TASKINFO, PI_FETCH_THREADS,
PI_FETCH_THREAD_BASIC, PI_FETCH_THREAD_SCHED,
PI_FETCH_THREAD_WAITS): New flags.
(procinfo): New (buried) members `rpc_block' and `died'.
* msg.defs (msg_report_wait): Change second arg to be a real
thread_t. Change returned reason from a string to an rpc code.
* process.defs (proc_getprocinfo): New parm FLAGS.
* hurd_types.h (enum file_storage_class): Added new classes
STORAGE_MEMORY and STORAGE_TASK. Doc fixes. Drop all the MUTATED
bits.
(STORAGE_MUTATED) New flag.
* fs.defs (file_get_storage_info): New parm FLAGS.
* hurd_types.h (PI_LOGINLD, PI_WAITING, PI_TRACED, PI_GETMSG): New
flags.
* io.defs (io_select): Make sreply port also available if
IO_SELECT_REPLY_PORT is defined.
Fri Oct 27 14:43:17 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* fsys.defs (fsys_startup): New parm OPENFLAGS.
* hurd_types.defs (SCP): New macro.
* io.defs (io_write, io_restrict_auth): Add SCP to incoming
variable sized arrays.
* socket.defs (socket_create_address, socket_setopt, socket_send):
Likewise.
* fs.defs (file_exec, file_set_translator): Likewise.
* socket.defs (socket_create_address): Drop parm `binding'.
* fs.defs: Added reply port option to all RPC's.
* fsys.defs (fsys_get_options): New RPC.
* fsys_reply.defs (fsys_get_options_reply): New stub.
* fs.defs (file_get_fs_options): New RPC.
* msg.defs (msg_report_wait): New RPC.
* fs.defs (file_invoke_translator): Function deleted.
* fsys_reply.defs (fsys_startup_reply, fsys_getfile_reply,
fsys_syncfs_reply, fsys_set_options_reply, fsys_getpriv_reply,
fsys_forward_reply): New functions, completing interface.
* fsys.defs: Doc fix.
Wed Oct 25 15:59:25 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* exec_startup.defs: New file.
* subsystems: Add exec_startup at 30500.
Thu Oct 12 16:56:52 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* exec.defs: Add INTR_INTERFACE marker.
* fs.defs (file_exec): Remove dealloc[] keywords, and revert
EXEC_TASK arg to task_t from mach_port_send_t. We cannot safely
use dealloc ool or move rights with the current RPC system.
Tue Oct 10 17:29:31 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* exec.defs [EXEC_IMPORTS]: Use this if defined.
(exec_exec, exec_init, exec_setexecdata): Use file_t for receiver.
(exec_exec): Use mach_port_send_t for FILE.
Sat Oct 7 05:26:20 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* fs.defs (file_exec): Add dealloc[] flag to most args.
Fri Oct 6 17:18:36 1995 Miles Bader <miles@gnu.ai.mit.edu>
* fsys.defs (fsys_getpriv): Change types of returned ports to
mach_port_send_t.
* fs.defs (file_get_storage_info): Change type of ADDRESSES to
off_array_t. Add ADDRESS_UNITS out parameter.
(dir_link): Swap the DIR and FILE parameters.
* hurd_types.defs (off_array_t, size_t, ssize_t): New types.
* hurd_types.h (off_array_t): New type.
Tue Oct 3 13:51:00 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* hurd_types.h (struct fsys_statfsbuf): fsys_stb_bsize ->
fsys_stb_iosize. fsys_stb_fsize -> fsys_stb_bsize.
Tue Sep 26 11:16:56 1995 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* hurd_types.h (file_storage_class): New type.
* fs.defs (file_get_storage_info): New RPC; use the slot that used
to hold file_pathconf.
Sun Sep 17 17:57:48 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* fs.defs (file_truncate): RPC renamed to file_set_size.
* io.defs (io_pathconf): New RPC.
* fs.defs (file_pathconf): RPC removed (replaced with skip).
* hurd_types.h (EXEC_STACK_ARGS): New macro.
Fri Sep 15 21:32:15 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* subsystems: core renamed to crash.
* paths.h (_SERVERS_CRASH): New macro.
(_SERVERS_CORE): Macro removed.
* core.defs: Renamed to crash.defs.
* crash.defs (crash_dump_task): Renamed from core_dump_task.
Thu Aug 24 11:55:28 1995 Miles Bader <miles@churchy.gnu.ai.mit.edu>
* fsys.defs (fsys_forward): New rpc.
* subsystems: Remove tserver.
* tserver.defs: Removed.
Mon Aug 21 14:08:52 1995 Miles Bader <miles@churchy.gnu.ai.mit.edu>
* tserver.defs (tserver_translate): New file.
* subsystems: Add tserver.
Mon Jul 17 15:05:16 1995 Miles Bader <miles@churchy.gnu.ai.mit.edu>
* socket.defs (socket_create): Change type of SERVER to pf_t.
(socket_create_address, socket_fabricate_address): Rename first
arg to `server', of type mach_port_t (so it can be either pf_t or
socket_t).
(socket_recv): Change type of ADDR to mach_port_send_t.
(socket_send, socket_recv): Change type of AMOUNT to
mach_msg_type_number_t.
* hurd_types.h (pf_t): New type.
* hurd_types.defs (pf_t): New type.
Mon Jun 26 19:23:38 1995 Michael I Bushnell <mib@duality.gnu.ai.mit.edu>
* fsys_reply.defs (fsys_goaway_reply): New routine, in its proper
place.
Fri May 12 18:54:17 1995 Miles Bader <miles@churchy.gnu.ai.mit.edu>
* fsys.defs (fsys_set_options, fsys_mod_readonly): Replace
mod_readonly with the more general set_options interface.
Mon Mar 20 21:44:59 1995 Michael I Bushnell <mib@duality.gnu.ai.mit.edu>
* Makefile (REMHDRS): Add ../libps/ps.h.
Mon Mar 6 15:25:27 1995 Miles Bader <miles@churchy.gnu.ai.mit.edu>
* process.defs: Doc fix.
Tue Jan 17 03:14:22 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* msg_request.defs: Fix typo reply->request.
* io.defs (io_select): Add user reply port and reply timeout args.
Make arg SELECT_TYPE inout, remove SELECT_RESULT out arg.
* io_reply.defs: Synchronize with new io_select definition.
* hurd_types.h (EXEC_INHERITED): New macro.
* msg_reply.defs: Prepend `msg_' to all RPC names.
(dir_changed, file_changed): Remove these skips.
* msg_request.defs: Prepend `msg_' to all RPC names. Add
msg_sig_post_untraced_reply and intervening skips.
* msg.defs: Prepend `msg_' to all RPC names.
(dir_changed, file_changed): RPCs moved to fs_notify.defs.
(msg_get_exec_flags, msg_set_exec_flags,
msg_set_some_exec_flags, msg_clear_some_exec_flags): New RPCs.
* fs_notify.defs: New file, broken out of msg.defs.
* subsystems: Add fs_notify at 20500.
* msg_reply.defs: Add sig_post_untraced_reply, and intervening skips.
Mon Jan 16 17:34:34 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* hurd_types.h (EXEC_TRACED): New macro.
* msg.defs (sig_post_untraced): New RPC.
* msg.defs (io_select_done): RPC removed, replaced with a skip.
* io_reply.defs: Add ID_TAG arg.
* io_request.defs (io_select_request): Remove RETURN_PORT arg.
* io.defs (io_select): Remove RETURN_PORT arg; make ID_TAG inout.
Fri Dec 9 00:35:47 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* io.defs (io_read, io_write, io_readable): Use
mach_msg_type_number_t in place of int.
Tue Sep 13 11:03:23 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
* auth.defs (auth_getids, auth_server_authenticate): Reverse
these changes; the auth server doesn't want them.
* msg.defs (get_init_ports, get_init_ints, get_dtable,
get_env_variable): Added `dealloc' to variable sized OUT parameters.
Mon Sep 12 19:28:35 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
* auth.defs (auth_getids, auth_server_authenticate): Added
`dealloc' to variable sized OUT parameters.
* fs.defs (file_getfh, dir_readdir, file_get_translator): Likewise.
* io.defs (io_read): Likewise.
* login.defs (login_get_location, login_get_input_devices): Likewise.
* process.defs (proc_gethostname, proc_getallpids,
proc_getexecdata, proc_getprocargs, proc_getprocenv,
proc_getloginpids, proc_getsessionpgids, proc_getsessionpids,
proc_getpgrppids): Likewise.
* socket.defs (socket_whatis_address, socket_getopt, socket_recv):
Likewise.
Sat Sep 10 06:08:19 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* tioctl.defs (sizes_t): Rename to winsize_t; make struct, not array.
* ioctl_types.h (sizes_t): Removed.
(winsize_t): New typedef for struct winsize.
(modes_t, speeds_t, cc_t): Use proper termios.h types.
Tue Aug 30 04:23:25 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* fs.defs (dir_pathtrans): Renamed to dir_lookup; fixed comment.
Fri Aug 26 12:45:51 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
* fs.defs (file_set_translator): Separate FLAGS arg into PASSIVE_FLAGS
and ACTIVE_FLAGS; rename TRANS and EXISTING args to less confusing
names.
* hurd_types.h: New flag FS_TRANS_SET.
Thu Aug 25 11:55:27 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
* auth.defs (auth_user_authenticate, auth_server_authenticate):
Changed rend_int to be a port; mach_port_send_t on both sides.
* io.defs (io_reauthenticate): Pass a port instead of an int
for secondary rendezvous.
* process.defs (proc_reauthenticate): Pass a port instead of an
int for secondary rendezvous.
* hurd_types.h (retry_type): Removed FS_RETRY_NONE; added
explicit initializers to keep the values constant.
* hurd_types.h (FSTYPE_EXT2FS): New macroo.
* hurd_types.h (struct procinfo): New member `logincollection'.
* fsys.defs (fsys_syncfs, fsys_mod_readonly): New RPC's.
* fsys_reply.defs: Added two skips corresponding to new RPC's.
Wed Aug 17 20:03:29 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* io.defs (io_select): Make RETURN_PORT arg mach_port_poly_t.
* msg.defs (io_select_done): Make NOTIFY_PORT arg mach_port_poly_t.
Wed Aug 17 15:23:03 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
* term.defs (termctty_open_terminal): New RPC.
Mon Aug 15 11:49:54 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
* startup.defs (startup_essential_task): Add sreplyport arg.
* startup_reply.defs: Add startup_essential_task_reply.
Tue Aug 9 19:43:50 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* core.defs (core_dump_task): Add SIGERROR arg.
* interrupt.defs (INTERRUPT_TIMEOUT): New macro.
Specify `waittime' with that value.
Mon Aug 8 15:49:30 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
* Makefile: Rewritten in accord with new scheme.
Thu Jul 21 15:44:43 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
* Makefile (DIST_FILES, HDRS): Name header files explicitly.
Fri Jul 15 22:53:29 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* subsystems: Rename utmp to login.
Mark begin and end of spread of subsystems used by ioctls.
* login.defs: Renamed from utmp.defs; renamed all calls.
Fri Jul 15 18:20:34 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* fsys.defs (fsys_startup): Remove DOTDOT_NODE.
(fsys_getroot): Add arg DOTDOT_NODE.
Thu Jul 14 11:46:56 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* utmp.defs: New file.
Mon Jul 11 20:07:52 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* hurd_types.defs (INTR_ROUTINE): Macro removed.
(INTR_INTERFACE): New macro.
* fs.defs: Invoke INTR_INTERFACE. Remove all INTR_ROUTINE uses.
* io.defs, process.defs, socket.defs: Likewise.
Fri Jul 8 15:53:02 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* hurd_types.h (retry_type): Added new magical types "machtype"
and "/".
* fs.defs (dir_pathtrans): Doc fix.
* msg.defs: Doc fix.
* process.defs (proc_wait): Doc fix.
* socket.defs (socket_fabricate_address): Added sockaddr_type
arg.
Fri Jul 8 15:26:19 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* fs.defs (file_invoke_translator): New RPC.
* hurd_types.defs (INTR_ROUTINE): New macro.
* socket.defs: Use INTR_ROUTINE for all interruptible RPCs.
* process.defs: Likewise.
* fs.defs: Likewise.
(dir_readdir): Make this interruptible.
Fri Jul 8 14:22:11 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* tioctl.defs: Remove ifdefs that were omitting most of the
ioctls. Added RPCs for missing codes 118-123. Added
block of skips between 99 and 100. Added INTR to appropriate
calls.
Tue Jul 5 14:46:49 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* Makefile (DIST_FILES): Added subsystems.
* fsys_reply.defs: Added fsys_getroot_reply in its proper place.
Wed Jun 29 13:06:42 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* ifsock.defs (ifsock_setsockaddr, ifsock_assume_responsibility):
Deleted RPCs.
* msg.defs (set_init_port, set_fd): Change back to using
mach_port_send_t instead of mach_port_t for PORT arg.
Tue Jun 28 18:39:02 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg.defs (get_dtable, set_dtable): Add REFPORT arg.
(get_fd, set_fd): Add REFPORT and FD args.
(set_init_port, set_fd): Use mach_port_t instead of
mach_port_send_t for PORT arg.
(get_environment): Add dealloc flag to VALUE arg.
* fsys.defs: Add RPT arg to all routines except fsys_init (which
has an unconditional sreplyport arg).
* hurd_types.defs (sreply_port_t): New type.
(RPTDECL, RPT, RPTLAST): New macros (moved from io.defs).
* io.defs (reply_port_t): Type removed.
(RPTDECL, RPT, RPTLAST): Macros moved to hurd_types.defs.
* auth.defs (reply_port_t): Type removed.
(auth_user_authenticate, auth_server_authenticate): Use
sreply_port_t in place of reply_port_t.
* fsys.defs (fsys_init): Likewise.
* msg.defs (sig_post): Likewise.
* process.defs (proc_getmsgport, proc_setmsgport, proc_wait): Likewise.
* startup.defs (startup_procinit, startup_authinit): Likewise.
Fri Jun 24 03:54:53 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* term.defs (term_become_ctty): Renamed to term_open_ctty.
* process.defs (proc_setprocargs): Renamed to proc_set_arg_locations.
(proc_get_arg_locations): New rpc.
* process_reply.defs: Add skip for proc_get_arg_locations.
Thu Jun 23 11:59:49 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* term.defs (term_become_ctty): Delete SIGPT arg.
Wed Jun 22 16:34:51 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* term.defs: Changed NEWTTY arg to be mach_port_send_t.
Thu Jun 16 00:48:45 1994 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* hurd_types.defs (file_changed_type_t, dir_changed_type_t): New types.
* hurd_types.h (INIT_PORT_LOGINCOLL): Removed.
(dir_changed_type_t, file_changed_type_t): New typedefs.
* fs.defs (file_check_access): Renamed from file_access, interface
changed.
Wed Jun 15 21:24:46 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* fsys.defs (fsys_getroot): New interface; similar to
fs.defs:dir_pathtrans. This eliminates the noxious need for
dir_pathtrans to work on null pathnames for non directories. This
is the Right Thing.
* fs.defs (file_get_translator_cntl): Return port as
`mach_port_send_t' not `fsys_t'.
Wed Jun 15 12:13:35 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* fs.defs (file_access): New RPC.
Tue Jun 14 13:57:18 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* hurd_types.h: Reorganized; many comments fixed or improved.
* hurd_types.h (enum verstype): Removed declaration.
(enum term_bottom_type): New type.
(TERM_ON_MACHDEV, TERM_ON_HURDIO, TERM_ON_MASTERPTY): Moved
into enum above.
(FSTYPE_SOCKET, FSTYPE_MISC): New macros.
* msg.defs (dir_changed, file_changed): New RPCs.
* fs.defs (dir_notice_changes, file_notice_changes): New RPCs.
* hurd_types.h (enum dir_changed_type, enum file_changed_type):
New declarations.
* fs.defs (dir_readdir): Totally new interface.
Mon Jun 13 07:14:23 1994 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* socket.defs: Corrected subsystem to 26000; was 20000, same as fs.
Mon Jun 6 23:07:08 1994 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* ioctl_types.h (modes_t, speeds_t, ccs_t, sizes_t): Make these
arrays of the appopriate sizes, not pointers.
Sun Jun 5 22:41:08 1994 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* tioctl.defs: Fix subsystem.
Fri May 27 07:53:15 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* exec.defs (exec_exec): Add `servercopy' flag to DTABLE,
PORTARRAY, and INTARRAY args.
(exec_startup): Add `dealloc' flag to ARGV, ENVP, PORTARRAY, and
INTARRAY args.
(exec_setexecdata): Add `servercopy' flag to PORTS and INTS args.
Wed May 25 13:32:31 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* io_reply.defs (io_readable_reply, io_get_openmodes_reply): Fix
typos.
Thu May 12 00:43:08 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* fsys_reply.defs: New file.
* fsys.defs (reply_port_t): Define type.
(fsys_init): Add sreplyport arg.
* process.defs (proc_setmsgport): Add sreplyport arg.
* process_reply.defs: Add proc_setmsgport_reply.
* version.h: Added multiple inclusion protection.
(struct hurd_version): Fixed `vers' member.
(hurd_versions): Add braces.
Wed May 11 16:05:43 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* startup.defs (startup_uname, startup_register_version): For
some bizzaro reason these didn't get removed. Now they are for real.
Tue May 10 18:17:41 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* tioctl.defs, ioctl_types.h: New files.
Mon May 9 14:28:06 1994 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* version.h: New file.
* startup.defs (startup_uname, startup_register_version): Removed
* process.defs (proc_uname, proc_register_version): New RPCs.
* process_reply.defs: Added skips corresponding to proc_name
and proc_register_version.
Wed May 4 01:01:11 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg_request.defs: New file.
Sun May 1 17:40:48 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* hurd_types.h (utsname_t): New typedef.
* hurd_types.defs (utsname_t): Define type for MiG.
Import <sys/utsname.h>.
Fri Apr 29 16:19:10 1994 Michael I Bushnell (mib@churchy.gnu.ai.mit.edu)
* io.defs (io_prenotify, io_postnotify): File offsets should be
vm_offset_t.
* io.defs (io_async): NOTIFY_PORT and ASYNC_ID_PORT
should be mach_port_send_t.
(io_get_icky_async_id): ICKY_ASYNC_ID_PORT should be
mach_port_send_t.
(io_map_cntl): Returned object should be mach_port_send_t.
* io.defs: Added new type reply_port_t; added sreplyport of
that type to all the stubs when REPLY_PORTS is defined.
* term.defs (term_getctty): CTTY arg should be mach_port_send_t
for the convenience of servers.
* io.defs (io_readnotify): New RPC.
* shared.h (use_readnotify_size, readnotify_size): New members.
* socket.defs: Change ports returned from servers to be
mach_port_send_t for the convenience of servers.
* ifsock.defs (ifsock_assume_responsibility): Just take over the
bootstrap port directly; this is more reliable anyway.
* fs.defs (file_set_translator): EXISTING arg should be
mach_port_send_t.
* shared.h (shared_io): Added optimal_transfer_size.
* hurd_types.h (HURD_RELEASE): New macro.
* startup.defs (startup_uname, startup_register_version): New
RPCs.
* startup.defs (startup_essential_task): require host priv port
for security.
* exec.defs (exec_exec) : FILE arg should be mach_port_send_t.
Thu Apr 28 22:58:14 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg.defs (reply_port_t): Define type.
(sig_post): Use reply_port_t for sreplyport arg; remove #ifdef.
* msg_reply.defs (reply_port_t): Define type.
(sig_post_reply): Use reply_port_t for first arg.
Wed Apr 27 06:39:46 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg.defs (sig_post): Put sreplyport arg inside #ifdef MSG_SREPLYPORT.
Thu Apr 21 21:17:37 1994 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* msg.defs (get_init_port, set_init_port, get_fd, set_fd): Make
PORT arg mach_port_send_t.
(get_environment, set_environment,
get_env_variable, set_env_variable): New routines.
Thu Feb 17 17:59:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* hurd_types.defs (io_statbuf_t): Change size to 32 ints.
Tue Feb 8 20:53:25 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg_reply.defs: Change subsystem to `msg_reply'. MiG-generated
header files use `#ifndef _subsystem_user_' to protect against
multiple inclusion, so two headers with the same subsystem conflict.
Thu Feb 3 03:45:18 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* hurd_types.h: Include <mach/task_info.h> and <mach/thread_info.h>
before using task_basic_info and thread_basic_info in sturct procinfo.
Mon Jan 24 17:33:00 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* msg_reply.defs: New file.
Tue Dec 21 01:11:04 1993 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* socket.defs: Fix typos.
Mon Dec 6 22:52:00 1993 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* Made snapshot.
Mon Dec 6 22:36:33 1993 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* hurd_types.defs (flock_t): Defined.
* hurd_types.h (flock_t): Added typedef.
Mon Dec 6 19:28:27 1993 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* process.defs (proc_get_collports): Designate as INTR, also
return the pids.
Wed Dec 1 21:41:06 1993 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* hurd_types.h: Remove deprecated information:
INBAND_MAX_DATA, FS_LOOKUP_* bits.
Added PI_ZOMBIE.
* process.defs (proc_getmsgport): Now is INTR.
* io.defs (io_get_conch, io_release_conch, io_eofnotify,
io_prenotify, io_postnotify, io_readsleep, io_sigio):
Remove cntl argument.
Tue Nov 23 12:18:21 1993 Michael I. Bushnell (mib at ernst.gnu.ai.mit.edu)
* fsys.defs (fsys_startup): control_port is now mach_port_send_t.
* io.defs (io_map): remove `xx' argument.
* process.defs (proc_handle_exceptions): forwardport is now
mach_port_send_t.
* auth.defs, auth_reply.defs: Removed auth_combine and extended
auth_makeauth to take multiple auth ports.
* shared.h, io.defs: Changed `it' terminology to `conch'.
Mon Nov 22 22:58:59 1993 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* io.defs: Changed io_map to use mach_port_send_t.
* auth.defs: Changed auth_user_authenticate arg newport to be
mach_port_send_t.
|