summaryrefslogtreecommitdiff
path: root/socketcall.c
Commit message (Collapse)AuthorAgeFilesLines
* Change the license of strace to LGPL-2.1-or-laterDmitry V. Levin2018-12-101-21/+1
| | | | | | | | strace is now provided under the terms of the GNU Lesser General Public License version 2.1 or later, see COPYING for more details. strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
* Update copyright headersDmitry V. Levin2018-06-141-0/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* socketcall: use printxval_d for printing call argumentEugene Syromyatnikov2018-04-271-8/+1
| | | | | * socketcall.c (SYS_FUNC(socketcall)): Use printxval_d instead of manual call argument decoding.
* Do not print too many arguments of socketcall syscallDmitry V. Levin2016-07-211-3/+2
| | | | | | | * socketcall.c (SYS_FUNC(socketcall)): Print just "call" and "args" syscall arguments. * tests/socketcall.c (test_socketcall): Update expected output. * tests/socketcall.test: Likewise.
* Fix corner cases of socketcall syscallDmitry V. Levin2016-07-201-0/+46
* xlat/socketcalls.in: New file. * socketcall.c: New file. * Makefile.am (libstrace_a_SOURCES): Add it. * linux/dummy.h (sys_socketcall): Remove stub alias. * syscall.c (decode_socket_subcall): Treat 1st argument of socketcall as "int". Do not substitute syscall until all socketcall arguments have been fetched successfully.