I've been trying to read up on some C libraries from die.net, and I'm a bit thrown off by numbers inside parameters, i.e:
See Also
alarm(2), nanosleep(2), signal(2), signal(7)Referenced By
aio(7), clock_nanosleep(2), getitimer(2), perlfaq5(1), pth(3), sleep(1), time(7), ualarm(3), upslog(8), usleep(3)
The only time I've known to put anything in actual parameters in documentation is when I give example code. But this clearly isn't example code. In fact, several of these functions don't even take integers for parameters.
I don't understand why they would say signal(2)
when they could just say signal()
.
What do the numbers mean?