add daemonizing support to console-client, initscript

2013-07-17 Thread Justus Winter
Hi, [PATCH 1/3] console-client: add daemonizing support This patch adds daemonizing support to console-client. [PATCH 2/3] Add (build) dependency on libdaemon [PATCH 3/3] Add an initscript for the hurd console These are for the debian repository only. They add the build and runtime dependency a

[PATCH 2/3] Add (build) dependency on libdaemon

2013-07-17 Thread Justus Winter
--- debian/control |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index eafb7a6..63b6889 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: mig (>= 1.3-2), gnumach-dev (>= 2:1.3.99.dfsg.cvs20070526), libc

[PATCH 1/3] console-client: add daemonizing support

2013-07-17 Thread Justus Winter
This patch adds daemonizing support using libdaemon. * console-client/console.c (daemonize): New variable. (options): Add --daemonize argument. (parse_opt): Handle --daemonize argument. (daemon_error): New error(3) like macro. (main): Daemonize. --- console-client/Makefile |2 +- console-cli

[PATCH 3/3] Add an initscript for the hurd console

2013-07-17 Thread Justus Winter
--- debian/changelog |1 + debian/hurd.hurd-console.init | 121 + 2 files changed, 122 insertions(+) create mode 100644 debian/hurd.hurd-console.init diff --git a/debian/changelog b/debian/changelog index 81b9e56..adde108 100644 --- a/deb

Re: [PATCH 3/3] Add an initscript for the hurd console

2013-07-17 Thread Justus Winter
Quoting Justus Winter (2013-07-17 13:09:06) > [...] > +DAEMON_ARGS="--daemonize -D > /home/teythoon/repos/hurd-upstream/console-client -d current_vcs -c /dev/vcs" Duh :/ I'll send an updated series. Justus

Re: how to continue from a breakpoint in GNU/Hurd

2013-07-17 Thread Richard Braun
On Wed, Jul 17, 2013 at 02:11:58PM +0800, Yue Lu wrote: > When I get the exception message, I set the EIP to the next instruction > (for instance 0x12345678), after resume it, I call get_thread_state(), and > found the EIP is still 0x12345678. The inferior never running anymore. I don't think it

[PATCH 4/4] Drop hurd_console_startup.patch

2013-07-17 Thread Justus Winter
This is no longer necessary with the initscript in place. --- debian/patches/hurd_console_startup.patch | 32 - debian/patches/series |1 - 2 files changed, 33 deletions(-) delete mode 100644 debian/patches/hurd_console_startup.patch diff --g

[PATCH 2/4] Add (build) dependency on libdaemon

2013-07-17 Thread Justus Winter
--- debian/control |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index eafb7a6..63b6889 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: mig (>= 1.3-2), gnumach-dev (>= 2:1.3.99.dfsg.cvs20070526), libc

[PATCH 1/4] console-client: add daemonizing support

2013-07-17 Thread Justus Winter
This patch adds daemonizing support using libdaemon. * console-client/console.c (daemonize): New variable. (options): Add --daemonize argument. (parse_opt): Handle --daemonize argument. (daemon_error): New error(3) like macro. (main): Daemonize. --- console-client/Makefile |2 +- console-cli

[PATCH 3/4] Add an initscript for the hurd console

2013-07-17 Thread Justus Winter
--- debian/changelog |1 + debian/hurd.hurd-console.init | 125 + 2 files changed, 126 insertions(+) create mode 100644 debian/hurd.hurd-console.init diff --git a/debian/changelog b/debian/changelog index 81b9e56..adde108 100644 --- a/deb

Re: how to continue from a breakpoint in GNU/Hurd

2013-07-17 Thread Yue Lu
Hi. On Wed, Jul 17, 2013 at 8:09 PM, Richard Braun wrote: > On Wed, Jul 17, 2013 at 02:11:58PM +0800, Yue Lu wrote: >> When I get the exception message, I set the EIP to the next instruction >> (for instance 0x12345678), after resume it, I call get_thread_state(), and >> found the EIP is still 0

Re: how to continue from a breakpoint in GNU/Hurd

2013-07-17 Thread Richard Braun
On Thu, Jul 18, 2013 at 12:07:20AM +0800, Yue Lu wrote: > when I used thread_info() to check the suspend count, they are zero. > But I met a strange thing. > this is my code snippet: > thread_basic_info_data_t _info; > thread_basic_info_t info = &_info; > mach_msg_type_number_t info_len = THREAD_BA

Re: how to continue from a breakpoint in GNU/Hurd

2013-07-17 Thread Yue Lu
On Thu, Jul 18, 2013 at 12:13 AM, Richard Braun wrote: > On Thu, Jul 18, 2013 at 12:07:20AM +0800, Yue Lu wrote: >> when I used thread_info() to check the suspend count, they are zero. >> But I met a strange thing. >> this is my code snippet: >> thread_basic_info_data_t _info; >> thread_basic_info

Re: [PATCH 4/4] ddb: cleanup db_command.c

2013-07-17 Thread Samuel Thibault
Marin Ramesa, le Wed 10 Jul 2013 14:14:29 +0200, a écrit : > Use new .h files in cleanup of db_command.c. Applied, thanks! Samuel