ABI backward-compatibility is the trick...
ABI backward-compatibility is the trick...
Posted Nov 30, 2010 22:42 UTC (Tue) by madscientist (subscriber, #16861)In reply to: ABI backward-compatibility is the trick... by lindahl
Parent article: The kernel and the C library as a single project
I'm not sure what your comment is referring to. Users of libc don't care whether syscalls are backward compatible. It's up to libc to make all those changes invisible to userspace... that's what I mean by backward-compatible ABI: the ABI between libc and the users of libc, not the ABI between libc and the kernel. In fact the advantage of moving libc into the kernel is that we would NOT need to be so worried about the ABI between libc and the kernel since they were modified in sync.
Obviously if you invoke system calls directly then you have to deal with this, but that's not relevant to whether libc comes with the kernel or not.
