aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/truss
Commit message (Expand)AuthorAgeFilesLines
* Add RISC-V support for truss(1)Li-Wen Hsu2017-01-241-0/+106
* Rework syscall structure lookups.John Baldwin2016-12-0619-46/+141
* Move mksubr from kdump into libsysdecode.John Baldwin2016-10-1721-226/+86
* Fix printf format warning.John Baldwin2016-10-111-2/+2
* Import the new automatically generated system call table for CloudABI.Ed Schouten2016-08-191-2/+0
* Remove files unused after pulling system call names from libsysdecode.John Baldwin2016-08-111-21/+0
* Fix sorting in r303934.Bryan Drewery2016-08-101-2/+2
* Use proper argument length for rmdir(2) for r303934.Bryan Drewery2016-08-101-2/+2
* Support rmdir(2).Bryan Drewery2016-08-101-0/+2
* truss: fix uninitialized trussinfo->curthread in add_threads()/enter_syscallBaptiste Daroussin2016-08-021-1/+3
* Add support for truss'ing Linux/x86_64 binaries under amd64.John Baldwin2016-06-092-0/+105
* Cleanup unnecessary semicolons from utilities we all love.Pedro F. Giffuni2016-04-151-1/+1
* Replace the CloudABI system call table by a machine generated version.Ed Schouten2016-03-241-2/+2
* Use ptrace(2) LWP events to track threads reliably in truss.John Baldwin2016-03-093-54/+163
* Add handling for non-native error values to libsysdecode.John Baldwin2016-02-238-215/+7
* Add support for displaying thread IDs to truss(1).John Baldwin2016-02-236-72/+60
* Remove an unused variable that snuck into the previous revision.John Baldwin2016-02-161-1/+0
* Fetch the current thread and it's syscall state from the trussinfo objectJohn Baldwin2016-02-163-24/+27
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2016-02-161-8/+0
* Correct the ABI name for Linux/i386 binaries under FreeBSD/i386.John Baldwin2016-02-151-1/+1
* Sign extend the error value for failing Linux/i386 system calls. ThisJohn Baldwin2016-02-151-0/+2
* Add a SYSDECODE_ABI_ prefix to the ABI enums to avoid potential collisions.John Baldwin2016-01-3014-16/+16
* Add support to libsysdecode for decoding system call names.John Baldwin2016-01-2618-84/+35
* Update dependencies after r292622 moved the ioctl script.Bryan Drewery2016-01-071-3/+0
* Move the mkioctls script to libsysdecode and use it to generate aJohn Baldwin2015-12-222-7/+2
* Start on a new library (libsysdecode) that provides routines for decodingJohn Baldwin2015-12-153-6/+4
* Make truss work for CloudABI processes on aarch64.Ed Schouten2015-10-305-85/+247
* Simplify syscall generation and ABI source file handling for the build.Bryan Drewery2015-10-1320-202/+233
* Let -c imply -S (hide signal output).Bryan Drewery2015-10-092-3/+3
* Properly format pointer size independent CloudABI system calls.Ed Schouten2015-10-084-18/+448
* Correct a comment.Bryan Drewery2015-10-081-1/+1
* Updated dependsSimon J. Gerraty2015-10-071-0/+2
* truss: Add support for utrace(2).Bryan Drewery2015-10-064-3/+45
* Group the decoded system calls by ABI and sort the calls within each ABI.John Baldwin2015-10-061-207/+214
* Fix crash if a process sends itself a SIGTRAP. Just forward it as expected.Bryan Drewery2015-10-051-5/+2
* Add decoding for modfind(2)Bryan Drewery2015-10-051-0/+2
* Fix tracking of unknown syscalls for 'truss -c'.Bryan Drewery2015-10-054-47/+61
* Style fix.Bryan Drewery2015-10-031-0/+1
* Add decoding for struct statfs.Bryan Drewery2015-10-032-1/+30
* Add aarch64 support to truss(1).Konstantin Belousov2015-10-021-0/+110
* Make truss print CloudABI system call names.Ed Schouten2015-10-023-0/+136
* Rather than groveling around in a socket address structure for a socketJohn Baldwin2015-10-011-33/+35
* The id_t type used to pass IDs to wait6(2) and procctl(6) is a 64-bitJohn Baldwin2015-10-012-10/+22
* - Remove extra integer argument from truncate() and ftruncate(). This isJohn Baldwin2015-10-011-5/+5
* Several changes to truss.John Baldwin2015-09-3016-2783/+1106
* Trim trailing whitespace.John Baldwin2015-09-303-5/+5
* Decode recently added procctl(2) operations.John Baldwin2015-09-291-1/+3
* Handle the conditional decoding of execve() argument and environmentJohn Baldwin2015-08-2012-225/+19
* Rework the argv and env string fetching for execve to be more robust.John Baldwin2015-08-201-26/+44
* ino_t is unsigned, so use uintmax_t instead of intmax_t when printing it.John Baldwin2015-08-191-2/+2