]> granicus.if.org Git - strace/commit
clone: use kernel_ulong_t as type of flags parameter of unshare call
authorEugene Syromyatnikov <evgsyr@gmail.com>
Wed, 19 Oct 2016 18:12:51 +0000 (21:12 +0300)
committerEugene Syromyatnikov <evgsyr@gmail.com>
Fri, 28 Oct 2016 23:54:01 +0000 (02:54 +0300)
commit0cffca31df8cf6fe85361f3db43c4e62e9ada134
treed81506d46e6a7f8ea8484b395a5c7c4e706622c5
parent951f1b1163eefa5cbf3cc42b6450f44dee6484f3
clone: use kernel_ulong_t as type of flags parameter of unshare call

Kernel declares flags parameter as long and looks like x32 and n32
implement no compat for this call.

* clone.c (SYS_FUNC(unshare)): Use getarg_ull and printflags64 for
obtaining and parsing flags parameter.
clone.c