Hi all,
I was trying to know how "printf" works in FreeBSD... I hvae reached to this
point :
#define _write(fd, s, n) \
__syscall(SYS_write, (int)(fd), (const void *)(s), (size_t)(n))
I'am not really familiar with the way FreeBSD handle interrupts. I like from
any one of you to tell me what
Hi,
First of all, Thanks to all of you for your help and support.
I have tried to go deeper and deeper to find out how "printf" works. ((( Of
course the aim of trying to understand the "printf", is to understand how
the internals of the BSD kernel work))) till i've faced the following
function: