diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-01 20:37:15 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-01 20:37:15 +0000 |
commit | ade40d3153e344521d48bddf744bc2b8a1792d06 (patch) | |
tree | 318ffdf6c80d39146d86792845cb02d36260e9d9 /gdb/convex-xdep.c | |
parent | e96d50d03cdcd0629a93898ab7a740e98cdc7f86 (diff) | |
download | gdb-ade40d3153e344521d48bddf744bc2b8a1792d06.zip gdb-ade40d3153e344521d48bddf744bc2b8a1792d06.tar.gz gdb-ade40d3153e344521d48bddf744bc2b8a1792d06.tar.bz2 |
bcopy -> memcpy
Diffstat (limited to 'gdb/convex-xdep.c')
-rw-r--r-- | gdb/convex-xdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/convex-xdep.c b/gdb/convex-xdep.c index 4b53f07..84bddd2 100644 --- a/gdb/convex-xdep.c +++ b/gdb/convex-xdep.c @@ -747,11 +747,11 @@ select_thread (thread) if (thread == inferior_thread) return; - bcopy (registers, thread_regs[inferior_thread], REGISTER_BYTES); + memcpy (thread_regs[inferior_thread], registers, REGISTER_BYTES); ps.pi_thread = inferior_thread = thread; if (have_inferior_p ()) ioctl (inferior_fd, PISETRWTID, &ps); - bcopy (thread_regs[thread], registers, REGISTER_BYTES); + memcpy (registers, thread_regs[thread], REGISTER_BYTES); } /* Routine to set or clear a psw bit in the psw and also all psws |