| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 months |
| seen | Feb 3 at 2:33 | |
| stats | profile views | 5 |
|
Jan 9 |
comment |
Why system call hooking produces different result everytime in Linux/Android 2.6.29? I used strace binaries on Android emulator but it was giving me list of some system calls (msgget() and msgrecv() ) which are not even implemented by Android as pointed out by Chris at stackoverflow.com/questions/14110856/… |
|
Jan 9 |
comment |
Why system call hooking produces different result everytime in Linux/Android 2.6.29? It's just one simple Android app, coded in Java. |
|
Jan 9 |
comment |
How to decode cmd = 3222823425 in ioctl in Linux 2.6.29 An awesome explanation..One quick question: By direction=2, you mean both read and write or direction value? I assume the first one as c(Hex)= 1100 (binary) where 11 are 30th and 31st bit of cmd and 11(bin) = 3(dec). So direction= 3 would be correct. Isn't so? |