commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Mach branch, master, updated. v1.4-359-gf533e17


From: Samuel Thibault
Subject: [SCM] GNU Mach branch, master, updated. v1.4-359-gf533e17
Date: Tue, 17 Dec 2013 18:05:37 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Mach".

The branch, master has been updated
       via  f533e173fccb40aac5c3e7f4f2277f3cdec5d029 (commit)
       via  13a3d2472961902e809bb90fc5adc6b7696f7db5 (commit)
       via  5a5ec187ae6cb2afc874ad9ef118ef634e9164c8 (commit)
       via  cea1f71ee21451d89cddeff04d8145697a5deab8 (commit)
       via  827c01fadb98e77f692d39d0fb34a1944e43c99b (commit)
       via  ece37d66ae394a0d783f3cba8a71d7b61735b0aa (commit)
       via  1a81c796689a01b00bc5aea0b3bd3fd672530798 (commit)
       via  f4963a52e96230374826137cce44813c94853e6f (commit)
       via  68bbdd1e18a87afede6cbdffdb8c7078ed3fa835 (commit)
       via  b5e56770ae41abccdbc28195cc132ff3f8aa1587 (commit)
      from  b5dfcde4f7728e87860fcc3ac6b0c7a9abe8c94e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f533e173fccb40aac5c3e7f4f2277f3cdec5d029
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:19 2013 +0100

    kern: avoid the casts in enqueue_head() and enqueue_tail()
    
    * kern/eventcount.c (simpler_thread_setrun) (enqueue_head) (th): Avoid the 
cast.
    * kern/thread.c (thread_halt_self) (enqueue_tail) (thread): Likewise.
    * kern/thread_swap.c (thread_swapin) (enqueue_tail) (thread): Likewise.

commit 13a3d2472961902e809bb90fc5adc6b7696f7db5
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:18 2013 +0100

    Mark functions that don't return with attribute noreturn

commit 5a5ec187ae6cb2afc874ad9ef118ef634e9164c8
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:17 2013 +0100

    vm: qualify pointers whose dereferenced values are constant with const

commit cea1f71ee21451d89cddeff04d8145697a5deab8
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:16 2013 +0100

    util: qualify pointers whose dereferenced values are constant with const

commit 827c01fadb98e77f692d39d0fb34a1944e43c99b
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:15 2013 +0100

    kern: qualify pointers whose dereferenced values are constant with const

commit ece37d66ae394a0d783f3cba8a71d7b61735b0aa
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:14 2013 +0100

    ipc: qualify pointers whose dereferenced values are constant with const

commit 1a81c796689a01b00bc5aea0b3bd3fd672530798
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:13 2013 +0100

    i386: qualify pointers whose dereferenced values are constant with const

commit f4963a52e96230374826137cce44813c94853e6f
Author: Marin Ramesa <address@hidden>
Date:   Mon Dec 16 23:55:12 2013 +0100

    device: qualify pointers whose dereferenced values are constant with const

commit 68bbdd1e18a87afede6cbdffdb8c7078ed3fa835
Author: Marin Ramesa <address@hidden>
Date:   Tue Dec 17 15:58:26 2013 +0100

    Cleanup of the copyin() and copyout() calls
    
    * device/ds_routines.c (device_write_trap) (copyin) (data): Cast to (void 
*). Argument is an address.
    (device_write_trap) (copyin) (io_data): Don't cast.
    (device_writev_trap) (copyin) (iovec, stack_iovec): Likewise.
    (device_writev_trap) (copyin) (data, p): Cast to (void *). Arguments are 
addresses.
    * kern/bootstrap.c (build_args_and_stack) (copyout) (arg_count, string_pos, 
zero): Don't cast.
    * kern/ipc_mig.c (syscall_vm_map) (copyin, copyout) (addr, address): 
Likewise.
    (syscall_vm_allocate) (copyin, copyout) (addr, address): Likewise.
    (syscall_task_create) (copyout) (name, child_task): Likewise.
    (syscall_mach_port_allocate) (copyout) (name, namep): Likewise.
    * kern/time_stamp.c (copyout) (temp, tsp): Likewise.

commit b5e56770ae41abccdbc28195cc132ff3f8aa1587
Author: Marin Ramesa <address@hidden>
Date:   Tue Dec 17 15:58:25 2013 +0100

    kern/sched_prim.h: remove unnecessary __GNUC__ #ifdef
    
    Attribute noreturn is used irrespective of __GNUC__. Remove
    unnecessary #ifdef.
    
    * kern/sched_prim.h [__GNUC__]: Remove #ifdef.

-----------------------------------------------------------------------

Summary of changes:
 device/chario.c          |   10 +++---
 device/dev_hdr.h         |   10 +++---
 device/dev_lookup.c      |   10 +++---
 device/dev_name.c        |   14 ++++----
 device/dev_pager.c       |   74 +++++++++++++++++++++++-----------------------
 device/ds_routines.c     |   38 ++++++++++++------------
 device/ds_routines.h     |   12 ++++----
 device/if_ether.h        |    2 +-
 device/kmsg.c            |    2 +-
 device/net_io.c          |   16 +++++-----
 device/net_io.h          |   10 +++---
 device/subrs.c           |    6 ++--
 i386/i386/ast_check.c    |    4 +-
 i386/i386/db_disasm.c    |   10 +++---
 i386/i386/db_interface.c |   14 ++++----
 i386/i386/db_interface.h |    2 +-
 i386/i386/db_trace.c     |   14 ++++----
 i386/i386/debug.h        |    2 +-
 i386/i386/debug_i386.c   |    2 +-
 i386/i386/fpu.c          |    4 +-
 i386/i386/hardclock.c    |    8 ++--
 i386/i386/io_perm.c      |    2 +-
 i386/i386/loose_ends.c   |    4 +-
 i386/i386/machine_task.c |    2 +-
 i386/i386/mp_desc.c      |    2 +-
 i386/i386/pcb.c          |    4 +-
 i386/i386/pcb.h          |    2 +-
 i386/i386/trap.c         |    2 +-
 i386/i386/user_ldt.c     |    4 +-
 i386/i386at/autoconf.c   |    4 +-
 i386/i386at/kd_event.c   |    2 +-
 i386/i386at/kd_queue.c   |    4 +-
 i386/i386at/kd_queue.h   |    4 +-
 ipc/ipc_entry.c          |    2 +-
 ipc/ipc_mqueue.c         |    6 ++--
 ipc/ipc_object.c         |    2 +-
 ipc/ipc_port.c           |    8 ++--
 ipc/ipc_print.h          |    6 ++--
 ipc/ipc_pset.c           |    2 +-
 ipc/mach_rpc.c           |    2 +-
 kern/assert.h            |    2 +-
 kern/boot_script.c       |    4 +-
 kern/bootstrap.c         |   10 +++---
 kern/debug.c             |    6 ++--
 kern/debug.h             |    4 +-
 kern/eventcount.c        |    6 ++--
 kern/host.c              |   12 ++++----
 kern/ipc_host.c          |    2 +-
 kern/ipc_mig.c           |   17 +++++-----
 kern/ipc_mig.h           |    2 +-
 kern/ipc_tt.c            |    6 ++--
 kern/mach_clock.c        |   16 +++++-----
 kern/mach_clock.h        |    2 +-
 kern/machine.c           |    6 ++--
 kern/machine.h           |    2 +-
 kern/pc_sample.c         |   34 ++++++++++----------
 kern/sched_prim.c        |    8 ++--
 kern/sched_prim.h        |   11 ++----
 kern/syscall_emulation.c |    2 +-
 kern/thread.c            |    6 ++--
 kern/thread.h            |    2 +-
 kern/thread_swap.c       |    4 +-
 kern/thread_swap.h       |    2 +-
 kern/time_stamp.c        |    4 +-
 util/atoi.c              |    8 ++--
 util/atoi.h              |    2 +-
 vm/memory_object.c       |    4 +-
 vm/memory_object_proxy.c |    8 ++--
 vm/memory_object_proxy.h |    8 ++--
 vm/vm_debug.c            |    2 +-
 vm/vm_external.c         |    4 +-
 vm/vm_map.c              |    8 ++--
 vm/vm_pageout.h          |    6 ++--
 vm/vm_print.h            |    4 +-
 vm/vm_resident.c         |    2 +-
 vm/vm_user.c             |    2 +-
 76 files changed, 277 insertions(+), 279 deletions(-)


hooks/post-receive
-- 
GNU Mach



reply via email to

[Prev in Thread] Current Thread [Next in Thread]