aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* .Roland McGrath2002-06-221-0/+5
|
* 2002-06-22 Roland McGrath <roland@frob.com>Roland McGrath2002-06-221-2/+2
| | | | | * storeio.c (parse_opt): Fix fencepost error in -n arg parsing. Reported by Nicola Girardi <nicola@g-n-u.de>.
* .Roland McGrath2002-06-211-0/+5
|
* 2002-06-21 Roland McGrath <roland@frob.com>Roland McGrath2002-06-211-1/+1
| | | | | * streamio.c (parse_opt): Fix fencepost error in -n arg parsing. Reported by Nicola Girardi <nicola@g-n-u.de>.
* .Roland McGrath2002-06-201-0/+5
|
* 2002-06-20 Roland McGrath <roland@frob.com>Roland McGrath2002-06-201-1/+1
| | | | | * firmlink.c (trivfs_S_io_read): Fix pointer arithmetic. Reported by Nicola Girardi <nicola@g-n-u.de>.
* Fix small typo in comment.Marcus Brinkmann2002-06-181-1/+1
|
* 2002-06-18 Marcus Brinkmann <marcus@gnu.org>Marcus Brinkmann2002-06-183-97/+362
| | | | | | | | | | | | | | | | | | | | | | | | | | | * console.h: Update all CONS_KEY_* macros to match other terminfo definitions (like "linux", "screen", "gnome"). Add CONS_CHAR_* macros for terminal graphic characters. * display.c (struct attr): New member ALTCHAR to flag usage of alternate character set. (display_notice_filechange): Make static. (handle_escape_bracket_m): Set ALTCHAR to 0 when resetting. Support new modes 10 and 11 to disable and enable ALTCHAR. (limit_cursor): New function, moved to global scope from ... (handle_escape_bracket): ... here. (linefeed): New function, moved to global scope from ... (display_output_one): ... here. (horizontal_tab): New function. (handle_escape_bracket): Add alias \E[' to \E[G for VT100 compatibility. Add capability \E[a (horizontal cursor position relative) for ECMA-48 compatibility. Add capabilities \E[I (horizontal tab) and \E[Z (backward tabulation) for ECMA-48 compatibility. Move capabilities \E[s and \E[u to ... (display_output_one): ... here as \E7 and \E8 for VT100 compatibility. (altchar_to_ucs4): New function. (display_output_one): Use altchar_to_ucs4 when in altchar mode. Add \EM (reset) capability.
* Fix typo.Marcus Brinkmann2002-06-171-1/+1
|
* 2002-06-17 Marcus Brinkmann <marcus@gnu.org>Marcus Brinkmann2002-06-174-115/+218
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * console.c (new_node): Adjust size of display node. * console.h: Add macros for color names. Add macros for intensity names. Add new types conchar_t and conchar_attr_t, which represent a console matrix cell and the attribute of one such cell, resp. Add macros for keycodes. (struct cons_display): Change type of _matrix member to conchar_t. * display.c (struct attr): Rewrite, usiong cons_attr_t to hold the attributes. (handle_escape_bracket_m): Use new members of ATTR. (display_flush_filechange): Send notification for changed matrix before the notification for new cur_line. Fix types in length calculation. (conchar_memset): New function. (user_create): Accept CHR and ATTR arguments. Fix calculation of NPAGES. Use conchar_memset instead of wmemset. (screen_fill): Fix type of ATTR argument. Use conchar_memset instead of wmemset. (screen_shift_left): Fix type of ATTR argument. Set attribute of empty cells. Fix length calculation. (screen_shift_right): Likewise. (handle_escape_bracket): Set default parameter for HUP. Be more ECMA-48 conform. (display_output_one): Fix arguments in screen_fill invocation. Set attribute for character output. Add <NEL> from ECMA-48. (display_create): Use 50 lines for now. Set default colors, and add new arguments to user_create invocation. CVSi: ----------------------------------------------------------------------
* .Roland McGrath2002-06-163-0/+14
|
* 2002-06-15 Roland McGrath <roland@frob.com>Roland McGrath2002-06-161-1/+3
| | | | | * socket-ops.c (S_socket_getopt): Use a local int for result param of getsockopt hook function.
* 2002-06-15 Roland McGrath <roland@frob.com>Roland McGrath2002-06-161-1/+1
| | | | * forks.c (main): Fix cast of sbrk result.
* 2002-06-15 Roland McGrath <roland@frob.com>Roland McGrath2002-06-161-3/+7
| | | | | * setup.c (page_write_file_direct): Use proper type for result param of device_write.
* .Roland McGrath2002-06-151-0/+4
|
* 2002-06-15 Roland McGrath <roland@frob.com>Roland McGrath2002-06-151-2/+2
| | | | * magic.c (trivfs_S_dir_readdir): u_int -> size_t
* 2002-06-15 Marcus Brinkmann <marcus@gnu.org>Marcus Brinkmann2002-06-152-29/+53
| | | | | | | | | | | * display.c (struct changes): Change type of WHICH from int to unsigned int. (display_flush_filechanges): Likewise for argument TYPE. Fix a zillion bugs. (display_record_filechange): Fix half a zillion bugs. (screen_shift_left): Fix order of arguments. Just flag a normal write change for the whole region, instead trying to be clever. (screen_shift_right): Likewise.
* .Roland McGrath2002-06-141-0/+4
|
* 2002-06-14 Roland McGrath <roland@frob.com>Roland McGrath2002-06-141-0/+2
| | | | * default_pager.c: #include "default_pager_S.h"
* .Roland McGrath2002-06-141-0/+7
|
* 2002-06-14 Roland McGrath <roland@frob.com>Roland McGrath2002-06-141-1/+4
| | | | | | * Makeconf (cleantarg): Add $(libname).so.$(hurd-version). * Makeconf ($(patsubst %.o,%.d,$(filter %.o,$(OBJS)))): Give these dep files a dependency on $(INSTALLED_LOCAL_HEADERS).
* 2002-06-14 Marcus Brinkmann <marcus@gnu.org>Marcus Brinkmann2002-06-132-64/+237
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * display.c (struct changes): New structure to temporarily hold changes to the display. (struct display): New member CHANGES. (display_flush_filechange): New function. (display_record_filechange): Likewise. (screen_fill): Use display_record_filechange instead display_notice_filechange. (display_output_one): Likewise. (screen_shift_left): Flush pending filechanges before scrolling. (screen_shift_right): Likewise. (display_output_one): Don't notice changes here ... (display_output_some): ... but here. * display.c (struct user_pager_info): Add members MEMOBJ_NPAGES and MEMOBJ_PAGES to hold the allocated and returned pages. (struct display): Remove member MEMOBJ_SIZE. (pager_clear_user_data): Deallocate returned pages for this pager object. (pager_read_page): Add an assertion to check that we don't create new pages for already allocated and returned pages. (pager_write_page): Implement by just holding to the page and storing its address in the pager object for later deallocation. (pager_report_extent): Implement using new member MEMOBJ_NPAGES rather than MEMOBJ_SIZE. (user_create): Allocate extra storage for the returned pages in UPI.
* .Roland McGrath2002-06-134-0/+97
|
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-6/+6
| | | | | | * io.c (trivfs_S_io_read, trivfs_S_io_write): off_t -> loff_t. Fix DATA argument type. (trivfs_S_file_sync): Add missing last arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-1/+1
| | | | * dir.c (diskfs_lookup_hard): Cast int to intptr_t before ino_t.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-7/+8
| | | | | * new-fifo.c (trivfs_S_io_map): Add reply port args. (trivfs_S_io_select): Remove bogus last arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-133-15/+23
| | | | | | | | | | | | | | | * firmlink.c (trivfs_S_io_read): Fix type of DATA argument. * streamio.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. * hello.c (trivfs_S_io_read): Likewise. * hello-mt.c (trivfs_S_io_read): Likewise. * null.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. (trivfs_S_file_set_size): Add reply port args. * hello.c (trivfs_S_io_read): off_t -> loff_t * hello-mt.c (trivfs_S_io_read): Likewise. * streamio.c (trivfs_S_io_read, trivfs_S_io_write): Likewise. (trivfs_S_file_sync): Add missing arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-6/+5
| | | | | | | | | | | | | * firmlink.c (trivfs_S_io_read): Fix type of DATA argument. * streamio.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. * hello.c (trivfs_S_io_read): Likewise. * hello-mt.c (trivfs_S_io_read): Likewise. * null.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. (trivfs_S_file_set_size): Add reply port args. * firmlink.c (trivfs_S_io_read): off_t -> loff_t (trivfs_S_io_select): Remove bogus last arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-7/+8
| | | | | * fifo.c (trivfs_S_io_map): Add reply port args. (trivfs_S_io_select): Remove bogus last arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-12/+15
| | | | | | | | | | | | | | | * firmlink.c (trivfs_S_io_read): Fix type of DATA argument. * streamio.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. * hello.c (trivfs_S_io_read): Likewise. * hello-mt.c (trivfs_S_io_read): Likewise. * null.c (trivfs_S_io_read): Likewise. (trivfs_S_io_write): Likewise. (trivfs_S_file_set_size): Add reply port args. * null.c (trivfs_S_io_map): Add reply port args. (trivfs_S_io_read, trivfs_S_io_write): off_t -> loff_t (trivfs_S_file_set_size): Likewise. (trivfs_S_io_select): Remove bogus last arg.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-1358-177/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dir-chg.c: Don't include stub header, trivfs.h now gets those decls. * dir-link.c: Likewise. * dir-lookup.c: Likewise. * dir-mkdir.c: Likewise. * dir-mkfile.c: Likewise. * dir-readdir.c: Likewise. * dir-rename.c: Likewise. * dir-rmdir.c: Likewise. * dir-unlink.c: Likewise. * file-access.c: Likewise. * file-chauthor.c: Likewise. * file-chflags.c: Likewise. * file-chg.c: Likewise. * file-chmod.c: Likewise. * file-chown.c: Likewise. * file-get-fs-options.c: Likewise. * file-get-storage-info.c: Likewise. * file-get-trans.c: Likewise. * file-get-transcntl.c: Likewise. * file-getcontrol.c: Likewise. * file-getfh.c: Likewise. * file-getlinknode.c: Likewise. * file-lock.c: Likewise. * file-reparent.c: Likewise. * file-set-size.c: Likewise. * file-set-trans.c: Likewise. * file-statfs.c: Likewise. * file-sync.c: Likewise. * file-syncfs.c: Likewise. * file-utimes.c: Likewise. * fsys-forward.c: Likewise. * fsys-get-options.c: Likewise. * fsys-getroot.c: Likewise. * fsys-goaway.c: Likewise. * fsys-set-options.c: Likewise. * fsys-stubs.c: Likewise. * fsys-syncfs.c: Likewise. * io-async-icky.c: Likewise. * io-async.c: Likewise. * io-duplicate.c: Likewise. * io-identity.c: Likewise. * io-map.c: Likewise. * io-modes-get.c: Likewise. * io-modes-off.c: Likewise. * io-modes-on.c: Likewise. * io-owner-get.c: Likewise. * io-owner-mod.c: Likewise. * io-pathconf.c: Likewise. * io-read.c: Likewise. * io-readable.c: Likewise. * io-reauthenticate.c: Likewise. * io-restrict-auth.c: Likewise. * io-revoke.c: Likewise. * io-seek.c: Likewise. * io-select.c: Likewise. * io-stat.c: Likewise. * io-stubs.c: Likewise. * io-write.c: Likewise.
* .Roland McGrath2002-06-138-0/+50
|
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-3/+0
| | | | * priv.h (trivfs_protid_t): Type removed (now in trivfs.h).
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-16/+25
| | | | | | * tunnel.c (trivfs_S_io_read): off_t -> loff_t (trivfs_S_io_map): Add reply port args. (trivfs_S_io_read): Fix argument types. Check mmap for failure.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-2/+1
| | | | * pfinet.h (trivfs_protid_t): Type removed (now in trivfs.h).
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-133-30/+43
| | | | | | | * priv.h: All declarations moved to ... * trivfs.h: ... here. #include those server stub headers. * fsmutations.h (FILE_IMPORTS, IO_IMPORTS, FSYS_IMPORTS): Use <hurd/trivfs.h> instead of "priv.h" here.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-2/+5
| | | | | | * Makefile (mig-sheader-prefix): New variable. (installhdrs): Add trivfs_*_S.h for fs, io, fsys (server stub headers). ($(MIGSTUBS:%Server.o=%.sdefsi)): Give dep $(srcdir)/fsmutations.h.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-10/+22
| | | | | | | | | | | * Makeconf (%_S.h %Server.c): Prepend $(mig-sheader-prefix) to stub header file name. (INSTALLED_LOCAL_HEADERS): Put them in the build directory, not the source. Make files with #include rather than symlinks. (../$(dir)/%: %): New dummy pattern rule. (INCLUDES): New variable broken out of CPPFLAGS. Add -I$(..)include. Include ..-relative dirs only if [$(dir) != .]. (CPPFLAGS): Use that.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-15/+14
| | | | * vminfo.c: Use `z' modifier format modifier for address/size values.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-1/+1
| | | | * fsck.h (struct dirinfo): Revert i_isize to using u_int.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-8/+14
| | | | | * boot.c (ds_device_write): int -> size_t in store_write call. (ds_device_write_inband): Likewise.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-1/+1
| | | | * dir.c (diskfs_lookup_hard): int -> ino_t
* (S_tioctl_tiocspgrp): revert unintentional checkinRoland McGrath2002-06-131-3/+0
|
* .Roland McGrath2002-06-131-0/+10
|
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-133-46/+58
| | | | | | | | | | * ptyio.c (pty_io_readable): int -> size_t in argument type. * term.h: Update decl. * users.c (trivfs_S_io_write): int -> size_t in AMT argument type. (trivfs_S_io_readable): Likewise. (trivfs_S_io_read): Likewise. Also u_int -> size_t, off_t -> loff_t. (trivfs_S_io_write): Likewise. (trivfs_S_io_map): Add reply port args.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-1/+1
| | | | * linux-src/include/net/ip_fib.h: Fix obsolescent #endif syntax.
* .Roland McGrath2002-06-134-0/+21
|
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-5/+4
| | | | * file-exec.c (trivfs_S_file_exec): Add reply port args.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-4/+4
| | | | * io-version.c (trivfs_S_io_server_version): Fix receiver arg type.
* 2002-06-13 Roland McGrath <roland@frob.com>Roland McGrath2002-06-131-2/+2
| | | | * dir-readdir.c (trivfs_S_dir_readdir): Revert last change.