Hello again folks,
Looking at more cleanup stuff I run across implicit declarations for copyin,
copyinmsg, copyout, and copyoutmsg. From my extremely limited knowledge of
assembler, copyin and copyinmsg look to be exactly the same. Is there any
reason not to drop all instances of copyinmsg in favor of copyin, since
copyin seems to be a "standard"?
Here are parts of the code:
from locore.S:
ENTRY(copyin)
Entry(copyinmsg)
pushl %esi
pushl %edi /* save registers */
<snip>
from asm.h:
#define ENTRY(x) .globl EXT(x); .p2align TEXT_ALIGN; LEXT(x)
#define Entry(x) .globl EXT(x); .p2align TEXT_ALIGN; LEXT(x)
Thanks!!
Barry deFreese (aka bddebian)
_______________________________________________
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd