diff options
author | hien <hien> | 2006-05-31 17:33:27 +0000 |
---|---|---|
committer | hien <hien> | 2006-05-31 17:33:27 +0000 |
commit | 6d82733dfa661eddccfa3cae7232773cafd66a82 (patch) | |
tree | 82bab5550f217787136075b71b45ce0b770f3089 | |
parent | ae7e681c5abb38561bb6ce54fe14ec692a479d6f (diff) | |
download | systemtap-steved-6d82733dfa661eddccfa3cae7232773cafd66a82.tar.gz systemtap-steved-6d82733dfa661eddccfa3cae7232773cafd66a82.tar.xz systemtap-steved-6d82733dfa661eddccfa3cae7232773cafd66a82.zip |
Fix _mlocakall flags
-rw-r--r-- | tapset/aux_syscalls.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index a7370f61..00d90946 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -884,8 +884,8 @@ function _recvflags_str(f) { /* `man mlockall` for more information */ function _mlockall_flags_str(f) { - if(f & 2) bs="MCL_CURRENT|".bs - if(f & 1) bs="MCL_FUTURE|".bs + if(f & 1) bs="MCL_CURRENT|".bs + if(f & 2) bs="MCL_FUTURE|".bs return substr(bs,0,strlen(bs)-1) } |