# PR 3331 # It's just an ordinary function that returns a 4-byte signed value, # even on a 64-bit hosts. probe kernel.function("sock_alloc_fd").return { println ($return < 0 ? "neg" : "pos") } probe timer.s (5) { exit () } probe begin { println ("start") }