summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-13kern: remove register qualifiersMarin Ramesa
* kern/eventcount.c: Remove register qualifiers.
2013-11-13kern: remove register qualifiersMarin Ramesa
* kern/bootstrap.c: Remove register qualifiers.
2013-11-13kern: remove register qualifiersMarin Ramesa
* kern/ast.c: Remove register qualifiers.
2013-11-13kern: remove register qualifiersMarin Ramesa
* kern/act.c: Remove register qualifiers.
2013-11-11ipc: remove register qualifiersMarin Ramesa
* ipc/ipc_thread.h: Remove register qualifiers.
2013-11-11ipc: remove register qualifiersMarin Ramesa
* ipc/mach_msg.c: Remove register qualifiers.
2013-11-11ipc: qualify constants with constMarin Ramesa
* ipc/ipc_table.c: Qualify constants with const.
2013-11-11ipc: trivial stylistic fix for consistencyMarin Ramesa
* ipc/ipc_pset.c: Trivial stylistic fix for consistency.
2013-11-11Merge branch 'master' of git.savannah.gnu.org:/srv/git/hurd/gnumachSamuel Thibault
2013-11-11ipc: remove register qualifiersMarin Ramesa
* ipc/ipc_kmsg.c: Remove register qualifiers.
2013-11-11kern: fix the error handling in exec_loadJustus Winter
Found using the Clang Static Analyzer. * kern/elf-load.c (exec_load): Properly propagate errors.
2013-11-10kern: comment unused variableMarin Ramesa
Variable reply_port is never used. There is indication in the comments that it might be used in future function call, so comment it. * kern/ipc_mig.c (syscall_device_writev_request): Comment variable.
2013-11-10device: initialize to zero offsetMarin Ramesa
Initialize addr to zero offset to quiet warnings about uninitialized deallocation. * device/chario.c (addr): Initialize to zero.
2013-11-10remove register qualifiersMarin Ramesa
* device/subrs.c: Remove register qualifiers.
2013-11-10remove register qualifiersMarin Ramesa
* device/net_io.c: Remove register qualifiers.
2013-11-10remove definitions of ETHERMTU and ETHERMINMarin Ramesa
* device/if_ether.h (ETHERMTU, ETHERMIN): Remove unused definitions.
2013-11-10remove register qualifiersMarin Ramesa
* device/blkio.c: Remove register qualifiers.
2013-11-09Fix overflow in Xen clock computationVladimir 'φ-coder/phcoder' Serbinenko
* xen/time.c (hyp_get_stime): Split `delta` into `delta_high` and `delta_low`, as it may overflow 4 second timing nowadays.
2013-11-09Remove lint codeMarin Ramesa
2013-10-10Increase kernel map entry pool sizeRichard Braun
* vm/vm_map.h (KENTRY_DATA_SIZE): Set to 256 pages.
2013-09-28Add files missing in distrib tarballSamuel Thibault
* Makefrag.am (libkernel_a_SOURCES): Add ddb/db_write_cmd.h, ipc/ipc_print.h, vm/vm_print.h * linux/Makefrag.am (EXTRA_DIST): Add linux/src/drivers/scsi/FlashPoint.c, linux/src/drivers/scsi/eata_pio_proc.c, linux/src/drivers/scsi/scsiiom.c.
2013-09-27Merge remote-tracking branch 'savannah/master' into masterThomas Schwinge
2013-09-27GNU Mach 1.4.Thomas Schwinge
* version.m4 (AC_PACKAGE_VERSION): Set to 1.4. * NEWS: Finalize changes for 1.4. * README: Update.
2013-09-27* configure.ac (AM_INIT_AUTOMAKE): Add dist-bzip2.Thomas Schwinge
2013-09-27Generate ChangeLog files for distributions.Thomas Schwinge
* gitlog-to-changelog: New file; import from gnulib's 9fc81090f6c5590bd1b0e0fa5087577a2ee43a3e:build-aux/gitlog-to-changelog. * Makefile.am (gen-ChangeLog): New target. (dist-hook): Depend on it.
2013-09-27dist-hook extensibility.Thomas Schwinge
* Makefile.am (dist-hook): Rename to... (dist-rm-CVS): ... this new target. (dist-hook): Depend on it.
2013-09-27* README: Simplify build instructions.Thomas Schwinge
Follow-up to commit 471e5b080f7790c2cf95e3069d9fed1173c9ec17.
2013-09-27Fix typoSvante Signell
* README: Fix typo.
2013-09-26Fix gpl.texi buildSamuel Thibault
texinfo does not support @heading/@center in the middle of an enumerate. * doc/gpl.texi: Move "NO WARRANTY" to item heading.
2013-09-26Really update READMESamuel Thibault
* README: Network drivers are actually enabled by default.
2013-09-26Update READMESamuel Thibault
* README: Update default drivers notice. Mention cross-compilation flags for 64bit systems.
2013-09-24Drop Invariant, Front-Cover and Back-Cover referencesSamuel Thibault
The referenced Invariant sections does not exist, and the front and back covers do not hold much information.
2013-09-22device: remove unused file dk_label.cMarin Ramesa
* device/dk_label.c: Remove file.
2013-09-21add comments after endifsMarin Ramesa
* device/ds_routines.c [CONFIG_PCMCIA, CONFIG_INET, LINUX_DEV, MACH_HYP]: Add comments after endifs.
2013-09-21remove lint codeMarin Ramesa
* device/ds_routines.c [lint]: Remove ifdefs and associated code.
2013-09-21remove register qualifiersMarin Ramesa
* device/ds_routines.c: Remove register qualifiers.
2013-09-21remove lint codeMarin Ramesa
* device/dev_pager.c [lint]: Remove ifdefs and associated code.
2013-09-21Coding style trivial fixesMarin Ramesa
2013-09-21remove register qualifiersMarin Ramesa
* device/dev_pager.c: Remove register qualifiers.
2013-09-16another small change in style for consistencyMarin Ramesa
* device/dev_name.c: Change in coding style.
2013-09-16use boolean_t instead of an intMarin Ramesa
Variable 'found' already receives values TRUE and FALSE, so why not make it a boolean. * device/dev_name.c: Use boolean_t instead of an int.
2013-09-16remove preprocessor commentsMarin Ramesa
The first one is a message that name lookup has been called, which I think is safe to remove, or maybe add #if DEBUG. Second one is a alternate calculation that I doubt it will ever be used, so I think it's safe to remove it. * device/dev_name.c: Remove preprocessor comments.
2013-09-16another small change in style for consistencyMarin Ramesa
* device/dev_name.c: Change in coding style.
2013-09-16small style changes for consistencyMarin Ramesa
* device/dev_name: Changes in coding style.
2013-09-16remove register qualifiersMarin Ramesa
* device/dev_name.c: Remove register qualifiers.
2013-09-15remove definition of NDEVICESMarin Ramesa
NDEVICES is never used. Judging by the position and the comments it was once used in initialization, but it's not anymore. I think it's safe to remove it. * device/dev_lookup.c (NDEVICES): Remove definition.
2013-09-15remove register qualifiersMarin Ramesa
* device/dev_lookup.c: Remove register qualifiers.
2013-09-11remove register qualifiers.Marin Ramesa
* device/cirbuf.c: Remove register qualifiers.
2013-09-11track the console init with a boolean instead of an intMarin Ramesa
A variable that keeps track if the console init has been called. It should never receive values other than 0 and 1, so constrain it's possible range of values to a boolean. * device/cons.c (cn_inited): Use boolean_t instead of an int.
2013-09-11track the console buffer usage with a boolean instead of an intMarin Ramesa
A variable that keeps track of the console buffer usage should never receive values other than 0 and 1, so constrain it's value range to boolean. Plus, it's more readable this way. * device/cons.c (consbufused): Use boolean_t instead of an int.