summaryrefslogtreecommitdiff
path: root/desc.c
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headersDmitry V. Levin2018-02-131-1/+1
* Rework decoding and pathtrace of old select syscallDmitry V. Levin2018-01-231-17/+9
* Use xappendstr instead of xsnprintf where suitableEugene Syromyatnikov2018-01-111-7/+6
* desc.c: use xsnprintf instead of sprintfDmitry V. Levin2018-01-071-3/+10
* Fix a few spacing style issuesDmitry V. Levin2017-06-171-2/+1
* Add copyright headersEugene Syromyatnikov2017-05-221-0/+1
* Introduce NSIG_BYTESDmitry V. Levin2016-12-271-1/+1
* Automatically replace kernel_(scno|ureg)_t with kernel_ulong_tDmitry V. Levin2016-12-261-6/+6
* desc: change tracee address type from long to kernel_ureg_tDmitry V. Levin2016-12-251-7/+7
* print_time*: change tracee address argument type from long to kernel_ureg_tDmitry V. Levin2016-12-251-3/+3
* umove*: change tracee address argument type from long to kernel_ureg_tDmitry V. Levin2016-12-251-2/+2
* desc: remove redundant castsDmitry V. Levin2016-12-231-3/+2
* Check for current_klongsize instead of current_personality where appropriateDmitry V. Levin2016-12-191-5/+3
* Use kernel_ulong_t instead of unsigned long long where appropriateDmitry V. Levin2016-12-191-1/+1
* struct tcb: make types of syscall arguments unsignedDmitry V. Levin2016-12-191-2/+2
* Cleanup oldselectDmitry V. Levin2016-12-191-17/+17
* Include "kernel_types.h" in defs.h and tests/tests.hDmitry V. Levin2016-12-161-2/+0
* alpha: alias getdtablesize to printargsDmitry V. Levin2016-01-081-7/+0
* Replace %Ld/%Lu printf format specifiers with %lld/%lluDmitry V. Levin2015-12-161-1/+1
* x32: fix pselect6 decodingDmitry V. Levin2015-11-271-5/+31
* desc.c: move parser of fcntl syscall to a separate fileDmitry V. Levin2015-10-081-192/+0
* desc.c: move parser of flock syscall to a separate fileDmitry V. Levin2015-10-081-14/+0
* Convert another parser of struct timeval to new mpers infrastructureDmitry V. Levin2015-09-191-9/+11
* Add a new helper function umove_ulong_array_or_printaddrDmitry V. Levin2015-09-151-21/+6
* desc.c: move epoll parsers to a separate fileDmitry V. Levin2015-08-011-110/+0
* desc.c: move eventfd parsers to a separate fileDmitry V. Levin2015-08-011-22/+0
* desc.c: move perf_event_open parser to a separate fileDmitry V. Levin2015-08-011-17/+0
* Fix oldselect decoding on 64-bit architecturesElvira Khabirova2015-07-301-3/+16
* Alias sys_epoll_create to printargs_ldDmitry V. Levin2015-07-201-6/+0
* desc.c: make use of RVAL_DECODEDDmitry V. Levin2015-07-201-62/+53
* desc.c: do not use xmalloc, use umove_or_printaddr and printaddrDmitry V. Levin2015-07-201-87/+69
* Introduce memory allocation wrappersDmitry V. Levin2015-05-251-8/+3
* Declare syscall parsers using SYS_FUNC macroDmitry V. Levin2015-04-071-38/+19
* Change last parameter of umoven() from char* to void*Denys Vlasenko2015-03-211-3/+3
* decode_select: do not allocate unused memoryDmitry V. Levin2015-01-281-2/+2
* decode_select: fix potential use of an uninitialized variableDmitry V. Levin2014-09-091-4/+3
* Decode paths associated with file descriptors returned by syscallsZubin Mithra2014-06-041-1/+10
* Compress blank linesDmitry V. Levin2014-05-301-14/+1
* Generate xlat/*.in filesDmitry V. Levin2014-05-301-227/+9
* epoll_ctl: fix EPOLL_CTL_DEL argument decodingDmitry V. Levin2014-04-171-2/+6
* Fix fcntl decodingDmitry V. Levin2014-03-031-51/+33
* sys_fcntl: remove F_FREESP and F_FREESP64 supportDmitry V. Levin2014-03-011-16/+3
* Use XLAT_END macroDmitry V. Levin2014-02-051-9/+9
* Use XLAT macroDmitry V. Levin2014-02-051-80/+80
* Define printflock64 only if it is referenced by other codeDmitry V. Levin2013-11-121-8/+34
* Move io_* syscalls decoding to a separate fileDmitry V. Levin2013-11-111-346/+0
* Stop using external libaio.h.Denys Vlasenko2013-11-111-19/+124
* sys_io_submit: simplify iocb_cmd_lookup() helper.Denys Vlasenko2013-11-111-11/+9
* sys_io_submit: stop traversing iocb vector after first failure.Denys Vlasenko2013-11-111-18/+18
* Fix select decoding on e.g. 32-bit ppc process by 64-bit strace.Denys Vlasenko2013-11-091-41/+27