harjoc

Results 3 comments of harjoc

For now I worked around it as described here: https://stackoverflow.com/questions/14207708/ioerror-errno-32-broken-pipe-when-piping-prog-py-othercmd ``` from signal import signal, SIGPIPE, SIG_DFL signal(SIGPIPE, SIG_DFL) ```

drltrace from dynamorio can generate a log of shared library calls, and for the main binary you can print __builtin_return_address(0) from gcc's -finstrument-functions callbacks and resolve addresses to symbols using...

BPF_HASH and the others are higher level wrappers that use BPF_TABLE. You can declare a BPF_LRU_HASH using: `BPF_TABLE("lru_hash", key_type, value_type, map_name, hash_size);` `BPF_TABLE` is documented in bcc's reference guide.