diff options
author | Roland McGrath <roland@gnu.org> | 2001-06-08 00:49:44 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-06-08 00:49:44 +0000 |
commit | 3a1034175975e9c744eeaab94cccf864266a502b (patch) | |
tree | eba2adf7d8c366263ba464ef5b092ae373cfd892 /NEWS | |
parent | 4d90940c0c5749cd9ceda0917a30e1f437b07876 (diff) | |
download | mig-3a1034175975e9c744eeaab94cccf864266a502b.tar.gz mig-3a1034175975e9c744eeaab94cccf864266a502b.tar.bz2 mig-3a1034175975e9c744eeaab94cccf864266a502b.zip |
2001-06-07 Roland McGrath <roland@frob.com>
* configure.in: Bump version to 1.2.
* configure, Makefile.in: Regenerated.
* NEWS: Updated for changes since 1.1 release.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,5 +1,30 @@ -*- Text -*- +7 June 2001 +Version 1.2 + +* New option -n to suppress default output file creation. + With -n, no output files are created except those named + by other command-line options. + +* New option -list to generate a file listing RPC names and message ID numbers. + The output is in six columns: + subsystem-name subsystem-base rpc-name rpc-num msg-id reply-id + For example this output line: + io 21000 io_read 1 21001 21101 + says that the file used `subsystem io 21000' and defined an RPC called + `io_read' with message ID 21000+1 = 21001; the reply message ID is + computed 21001+100 = 21101. In this example: + io 21000 io_reauthenticate 14 21014 0 + the declaration is a `simpleroutine' that expects no reply, so 0 is + printed in place of the computed reply message ID. The output list + these examples is generated on a GNU/Hurd system with this command: + mig -n -list /dev/stdout /include/hurd/io.defs + +* Output files of C source now start by defining _GNU_SOURCE, + for compatibility with the GNU C library on GNU/Hurd. + + 22 June 1999 Version 1.1 |