Browse Source
- with -DREENTRANT_SYSCALLS_PROVIDED (before this commit) There is no point that application could provide reent syscall implementation. (libc.a) (application/non-reent) fxxx(reent) ---> xxx() ; standalone - without -DREENTRANT_SYSCALLS_PROVIDED (this commit) There is a point that application could provide reent syscall implementation. (libc.a) (libg.a) (libgloss.a) fxxx(reent) ---> _xxx_r(reent) ---> xxx() ; pk based (libc.a) (application/reent) fxxx(reent) ---> _xxx_r(reent) ; standalonepull/141/merge
committed by
Palmer Dabbelt
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue