[PATCH] fix display of dirfd with x86 binary and x86_64 strace

Mike Frysinger vapier at gentoo.org
Sun Apr 5 06:03:33 UTC 2009


forgot to include an example ...

here is openat(AT_FDCWD, ...):
before: openat(4294967196, "/", O_WRONLY)       = -1 EISDIR (Is a directory)
after: openat(AT_FDCWD, "/", O_WRONLY)         = -1 EISDIR (Is a directory)

and here is openat(-11, ...):
before: openat(-11, "/", O_WRONLY)              = -1 EISDIR (Is a directory)
after: openat(4294967285, "/", O_WRONLY)       = -1 EISDIR (Is a directory)
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.strace.io/pipermail/strace-devel/attachments/20090405/1495b9ac/attachment.bin>


More information about the Strace-devel mailing list