From: Tom de Vries <tdevries@suse.de>
To: Tom Tromey <tom@tromey.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH 1/3] [gdbsupport] Add gdb::{waitpid,read,write,close}
Date: Tue, 5 Nov 2024 13:07:49 +0100 [thread overview]
Message-ID: <9b20eea0-0f14-47d9-ad7f-39e197d2e521@suse.de> (raw)
In-Reply-To: <87y122501s.fsf@tromey.com>
On 11/1/24 18:35, Tom Tromey wrote:
>>>>>> "Tom" == Tom de Vries <tdevries@suse.de> writes:
>
> Tom> +namespace gdb {
> Tom> +
> Tom> +extern "C" {
>
> I didn't even know this was valid ... but is it really needed?
> It seems wrong.
>
It seemed to work:
...
$ cat test.c
namespace gdb {
extern "C" {
int foo (void) { return 1; };
}
}
$ cat test2.c
namespace gdb {
extern "C" {
int foo (void);
}
}
int
main (void)
{
return gdb::foo ();
}
$ g++ test.c test2.c
...
but the linkage symbol is plain foo:
...
$ nm ./a.out | grep foo
00000000004004c7 T foo
...
So, you're right, this is wrong.
I seem to have ended up with gdb_waitpid instead of gdb::waitpid in v2,
similar to gdb_select, but thinking about it now I slightly prefer
gdb::waitpid. I suppose it doesn't matter that much.
> Tom> + pid_t
> Tom> + waitpid (pid_t pid, int *wstatus, int options)
> Tom> + {
> Tom> + return gdb::handle_eintr (-1, ::waitpid, pid, wstatus, options);
> Tom> + }
>
> Also it seems like these could all be inline functions in the header
> anyway.
Done in v2. In the case of fnctl, I ended up with a template to handle
the variable number of arguments.
Submitted here (
https://sourceware.org/pipermail/gdb-patches/2024-November/212941.html ).
Thanks,
- Tom
next prev parent reply other threads:[~2024-11-05 12:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-28 17:49 Tom de Vries
2024-10-28 17:49 ` [PATCH 2/3] [gdb] Use gdb::waitpid more often Tom de Vries
2024-10-28 17:49 ` [PATCH 3/3] [gdbsupport] Add gdb::wait Tom de Vries
2024-11-01 17:35 ` [PATCH 1/3] [gdbsupport] Add gdb::{waitpid,read,write,close} Tom Tromey
2024-11-05 12:07 ` Tom de Vries [this message]
2024-11-22 16:46 ` Tom de Vries
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9b20eea0-0f14-47d9-ad7f-39e197d2e521@suse.de \
--to=tdevries@suse.de \
--cc=gdb-patches@sourceware.org \
--cc=tom@tromey.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).