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-308-ge95d650


From: Samuel Thibault
Subject: [SCM] GNU Mach branch, master, updated. v1.4-308-ge95d650
Date: Sun, 08 Dec 2013 16:00:54 +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  e95d650716ec19e450baf1249d4d21025a8a289f (commit)
       via  f2ceb891968886c2e1804b57070fe1376be6d646 (commit)
       via  8d2e05732d773546714a78dbc603b09d2504f1de (commit)
       via  e2f988e458cb9ba80b29ad01352d264896d4c7d8 (commit)
       via  b8e3e8d4b938160d50b7e253e1acd08b1b90b0f0 (commit)
       via  1f8576d09048a063a5d491c16d7956fee1943bb1 (commit)
       via  1cf702c79105a4e188d9e25d3cde82b99af24261 (commit)
       via  0178b269ab3e906ffc6f629b4ef62303ff85808b (commit)
       via  c743a22c5a68d67a952acfeae9cedcd002537dde (commit)
       via  cd79da88b148c79cec94f214c4efd07dd8069863 (commit)
       via  039ae1184c7cc855e0435004ef8d5933424be43d (commit)
       via  9c8ac9efd5385771481968bec7d161875108dd3d (commit)
       via  6916384928be2fc1db19527620c57e4d93e07923 (commit)
       via  690144baccc1ea91ff87722b2a0515eebea6e148 (commit)
       via  1e2f0bcecaecb516d123db6d760c296f718bbcc1 (commit)
       via  a6513fde6d4ae0ae6759a9a6b0f805b3e4921c22 (commit)
       via  eb64b7283f17a4380b0b2aa553afc52d2468b980 (commit)
       via  7eee86071820dfe40d612f1daf488a983e30afe9 (commit)
       via  e849c67ce712f5fdc6812c4c5b19421bc59f8c0f (commit)
       via  57f37685f5b23170093ae69cbbe656a0288ea60e (commit)
       via  8ea6b217fb1ded91dd764ac38cde577190879c2d (commit)
       via  894bc2481af492e85dc5718b847937868e475379 (commit)
       via  cc206bc51a08eb4c2a4908697c3585c44a91a8e9 (commit)
       via  a05fa165cc88ee47f69ef331bf8e39c18df7ec3d (commit)
       via  2fdf4f0db1ce5c3cd0dd0a139316d0056c89669a (commit)
       via  8a5a8391c195ac46745825634755f41e8e31260c (commit)
      from  1e10bea11c5e4789fa36592998312d84efe09158 (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 e95d650716ec19e450baf1249d4d21025a8a289f
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:30 2013 +0100

    ddb/db_trap.c (db_task_trap): remove forward declarations
    
    * ddb/db_break.h (db_check_breakpoint_valid): Add prototype.
    * ddb/db_trap.c (db_init_default_thread, db_check_breakpoint_valid): Remove 
forward declarations.

commit f2ceb891968886c2e1804b57070fe1376be6d646
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:29 2013 +0100

    Use db_addr_t instead of db_expr_t
    
    In this way everything falls into place and there is one cast less.
    
    Function db_task_printsym() is already always called with the cast to
    db_addr_t in the first argument.
    
    * ddb/db_aout.c (aout_db_line_at_pc): Use db_addr_t instead of db_expr_t.
    (aout_db_search_by_addr): Don't cast to vm_offset_t. Argument is already
    db_addr_t.
    * ddb/db_aout.h (aout_db_line_at_pc): Use db_addr_t instead of db_expr_t.
    * ddb/db_sym.c (db_task_printsym): Likewise.
    (db_line_at_pc): Likewise.
    * ddb/db_sym.h (db_task_printsym): Likewise.
    (db_line_at_pc): Likewise.
    * i386/i386/db_trace.c (db_task_printsym): Cast to db_addr_t instead of 
db_expr_t.
    Member swap_func is a pointer to void.

commit 8d2e05732d773546714a78dbc603b09d2504f1de
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:28 2013 +0100

    ddb/db_print.c: use unsigned long instead of an unsigned int
    
    Variable db_maxoff is in other files declared as unsigned long.
    
    * ddb/db_print.c (db_maxoff): Use unsigned long instead of an unsigned int.

commit e2f988e458cb9ba80b29ad01352d264896d4c7d8
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:27 2013 +0100

    ddb/db_mp.c: definition of db_console() only if CONSOLE_ON_MASTER
    
    Function db_console() is called only if CONSOLE_ON_MASTER.
    
    If it stays this way, db_console() will not compile. I don't know
    if it should be removed. Maybe someone will rewrite it.
    
    * ddb/db_mp.c (db_console): Definition only if CONSOLE_ON_MASTER.
    * ddb/db_mp.h [CONSOLE_ON_MASTER] (db_console): Add prototype.

commit b8e3e8d4b938160d50b7e253e1acd08b1b90b0f0
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:25 2013 +0100

    ddb/db_mp.c: use boolean instead of an int
    
    * ddb/db_mp.c (db_enter_debug): Use boolean instead of an int.

commit 1f8576d09048a063a5d491c16d7956fee1943bb1
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:22 2013 +0100

    ddb/db_examine.c: trivial stylistic fix for consistency
    
    * ddb/db_examine.c: Trivial stylistic fix for consistency.

commit 1cf702c79105a4e188d9e25d3cde82b99af24261
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:21 2013 +0100

    ddb/db_examine.c (db_examine_cmd): remove forward declaration
    
    * ddb/db_examine.c (db_option): Remove forward declaration.

commit 0178b269ab3e906ffc6f629b4ef62303ff85808b
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:19 2013 +0100

    ddb/db_command.c (db_command): remove forward declaration
    
    * ddb/db_command.c (db_fncall): Remove forward declaration.

commit c743a22c5a68d67a952acfeae9cedcd002537dde
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:17 2013 +0100

    ddb/db_command.c: use boolean values
    
    * ddb/db_command.c (db_cmd_loop_done): Use boolean values.

commit cd79da88b148c79cec94f214c4efd07dd8069863
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:16 2013 +0100

    i386/i386at/kd.c: use io_req instead of uio
    
    Struct uio is nowhere defined and in device/buf.h the string uio is defined
    as io_req. Remove all declarations of uio structure and use io_req_t instead
    of it.
    
    * device/buf.h (uio, io_req): Remove definition.
    * i386/i386at/kd.c: Remove comment.
    (kdread): Use io_req_t.
    (kdwrite): Likewise.
    * i386/i386at/kd.h (kdread, kdwrite): Use io_req_t as argument type.

commit 039ae1184c7cc855e0435004ef8d5933424be43d
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:15 2013 +0100

    ddb/db_break.c (db_find_thread_breakpoint_here): remove unnecessary cast
    
    Variable addr is already of type db_addr_t.
    
    * ddb/db_break.c (db_find_thread_breakpoint_here) (addr): Don't cast to 
db_addr_t.

commit 9c8ac9efd5385771481968bec7d161875108dd3d
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:14 2013 +0100

    ddb/db_break.c (db_add_thread_breakpoint): fix argument list
    
    * ddb/db_break.c (db_add_thread_breakpoint): Fix argument list.

commit 6916384928be2fc1db19527620c57e4d93e07923
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:13 2013 +0100

    ddb/db_aout.c (aout_db_lookup): remove forward declaration
    
    * ddb/db_aout.c (db_sym_parse_and_lookup): Remove forward declaration.
    * ddb/db_sym.h (db_sym_parse_and_lookup): Add prototype.

commit 690144baccc1ea91ff87722b2a0515eebea6e148
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:12 2013 +0100

    ddb/db_aout.c (aout_db_qualified_search): use DB_SYM_NULL as return value
    
    Function aout_db_qualified_search() returns db_sym_t. Use DB_SYM_NULL as
    return value instead of zero.
    
    * ddb/db_aout.c (aout_db_qualified_search): Use DB_SYM_NULL as return value.

commit 1e2f0bcecaecb516d123db6d760c296f718bbcc1
Author: Marin Ramesa <address@hidden>
Date:   Sun Dec 8 12:40:07 2013 +0100

    i386/i386/db_interface.c: remove forward declaration
    
    * i386/i386/db_interface.c (db_write_bytes_user_space): Remove forward 
declaration.
    * i386/i386/db_interface.h (db_write_bytes_user_space): Add prototype.

commit a6513fde6d4ae0ae6759a9a6b0f805b3e4921c22
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:30:00 2013 +0100

    i386/i386at/lpr.c: fix initalization from incompatible pointer type
    
    * i386/i386at/lpr.c (lprprobe): Modify argument types.
    * i386/i386at/lpr.h (lprprobe): Likewise.

commit eb64b7283f17a4380b0b2aa553afc52d2468b980
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:58 2013 +0100

    i386/i386at/com.c: fix assignment from incompatible pointer type
    
    * device/tty.h (tty): Modify so that correct argument list and return type 
is listed.

commit 7eee86071820dfe40d612f1daf488a983e30afe9
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:57 2013 +0100

    i386/i386at/com.c: fix initialization from incompatible pointer type
    
    * i386/i386at/com.c (comprobe): Modify argument types.
    (comprobe): Cast from (struct bus_ctrl *) to (struct bus_device *).
    comprobe_general() uses only a small subset of members, so it's all
    the same which struct it is.
    * i386/i386at/com.h (comprobe): Modify argument types.

commit e849c67ce712f5fdc6812c4c5b19421bc59f8c0f
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:52 2013 +0100

    kern/startup.c: use boolean values
    
    * kern/startup.c (reboot_on_panic): Use boolean values.

commit 57f37685f5b23170093ae69cbbe656a0288ea60e
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:49 2013 +0100

    vm/vm_map.c: use boolean instead of an int
    
    * vm/vm_map.c (vm_map_pmap_enter_print, vm_map_pmap_enter_enable): Use 
boolean instead of an int.

commit 8ea6b217fb1ded91dd764ac38cde577190879c2d
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:48 2013 +0100

    vm/vm_object.c: remove unused variable
    
    * vm/vm_object.c (vm_object_terminate_remove_all): Remove unused variable.

commit 894bc2481af492e85dc5718b847937868e475379
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:47 2013 +0100

    vm/vm_pageout.c: remove forward declarations
    
    * vm/vm_pageout.c (vm_pageout_continue, vm_pageout_scan_continue): Remove 
forward declarations.
    * vm/vm_pageout.h (vm_pageout_continue, vm_pageout_scan_continue): Add 
prototypes.

commit cc206bc51a08eb4c2a4908697c3585c44a91a8e9
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:46 2013 +0100

    i386/i386at/pic_isa.c: remove forward declaration
    
    * i386/Makefrag.am: Include i386/i386/hardclock.h.
    * i386/i386/hardclock.h: New file.
    Add copyright.
    [_I386_HARDCLOCK_H_]: Add ifndef.
    (hardclock): Add prototype.
    * i386/i386at/pic_isa.c (hardclock): Remove forward declaration.
    Include i386/hardclock.h.

commit a05fa165cc88ee47f69ef331bf8e39c18df7ec3d
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:45 2013 +0100

    i386/i386at/model_dep.c: fix argument list
    
    * i386/i386at/model_dep.c (timemmap): Fix argument list.

commit 2fdf4f0db1ce5c3cd0dd0a139316d0056c89669a
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:44 2013 +0100

    i386/i386at/lpr.c: fix argument list
    
    * i386/i386at/lpr.c (lprprobe): Fix argument list.

commit 8a5a8391c195ac46745825634755f41e8e31260c
Author: Marin Ramesa <address@hidden>
Date:   Fri Dec 6 16:29:43 2013 +0100

    ddb/db_output.c: remove forward declaration
    
    * ddb/db_input.h (db_check_interrupt): Add prototype.
    * ddb/db_output.c: Include ddb/db_input.h.
    (db_check_interrupt): Remove forward declaration.

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

Summary of changes:
 ddb/db_aout.c                        |   16 +++++++---------
 ddb/db_aout.h                        |    2 +-
 ddb/db_break.c                       |    3 ++-
 ddb/db_break.h                       |    2 ++
 ddb/db_command.c                     |    9 ++++-----
 ddb/db_examine.c                     |    7 +++----
 ddb/db_input.h                       |    2 ++
 ddb/db_mp.c                          |    6 +++---
 ddb/db_mp.h                          |    4 ++++
 ddb/db_output.c                      |    3 +--
 ddb/db_print.c                       |    2 +-
 ddb/db_sym.c                         |    4 ++--
 ddb/db_sym.h                         |   12 +++++++++---
 ddb/db_trap.c                        |    2 --
 device/buf.h                         |    5 -----
 device/tty.h                         |    4 ++--
 i386/Makefrag.am                     |    1 +
 i386/i386/db_interface.c             |    1 -
 i386/i386/db_interface.h             |    7 +++++++
 i386/i386/db_trace.c                 |    2 +-
 ddb/db_mp.h => i386/i386/hardclock.h |   15 +++++++++------
 i386/i386at/com.c                    |    4 ++--
 i386/i386at/com.h                    |    2 +-
 i386/i386at/kd.c                     |    6 +++---
 i386/i386at/kd.h                     |    4 ++--
 i386/i386at/lpr.c                    |    3 ++-
 i386/i386at/lpr.h                    |    2 +-
 i386/i386at/model_dep.c              |    2 ++
 i386/i386at/pic_isa.c                |    2 +-
 kern/startup.c                       |    4 ++--
 vm/vm_map.c                          |    4 ++--
 vm/vm_object.c                       |    2 --
 vm/vm_pageout.c                      |    3 ---
 vm/vm_pageout.h                      |    4 ++++
 34 files changed, 83 insertions(+), 68 deletions(-)
 copy ddb/db_mp.h => i386/i386/hardclock.h (78%)


hooks/post-receive
-- 
GNU Mach



reply via email to

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