mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
* go32-nat.c: Minor tweaks, to pacify the ari script.
This commit is contained in:
parent
f7af964784
commit
ba8629a96e
@ -1,3 +1,7 @@
|
||||
2001-04-01 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* go32-nat.c: Minor tweaks, to pacify the ari script.
|
||||
|
||||
2001-04-01 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c (i386_extract_struct_value_address): New function.
|
||||
|
@ -112,7 +112,7 @@ save_npx (void)
|
||||
static void
|
||||
load_npx (void)
|
||||
{
|
||||
asm ("frstor %0":"=m" (npx));
|
||||
asm ("frstor %0":"=m" (npx));
|
||||
}
|
||||
/* ------------------------------------------------------------------------- */
|
||||
/* Stubs for the missing redirection functions. */
|
||||
@ -122,25 +122,34 @@ typedef struct {
|
||||
} cmdline_t;
|
||||
|
||||
void
|
||||
redir_cmdline_delete (cmdline_t *ptr) {ptr->redirected = 0;}
|
||||
redir_cmdline_delete (cmdline_t *ptr)
|
||||
{
|
||||
ptr->redirected = 0;
|
||||
}
|
||||
|
||||
int
|
||||
redir_cmdline_parse (const char *args, cmdline_t *ptr)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int
|
||||
redir_to_child (cmdline_t *ptr)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
redir_to_debugger (cmdline_t *ptr)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
redir_debug_init (cmdline_t *ptr) { return 0; }
|
||||
redir_debug_init (cmdline_t *ptr)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif /* __DJGPP_MINOR < 3 */
|
||||
|
||||
typedef enum { wp_insert, wp_remove, wp_count } wp_op;
|
||||
|
Loading…
Reference in New Issue
Block a user