#1134 closed bug (fixed)
Missing symbol: funlockfile
Reported by: | aldeck | Owned by: | korli |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | - General | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
Missing symbol when trying to run the Python interpreter. Strange thing is that it seems to be implemented and built (even if it's a no-op for now) so it shouldn't complain. I'm not familiar enough with the code to dig deeper :)
some places i looked at :) http://svn.berlios.de/viewcvs/haiku/haiku/trunk/src/system/libroot/posix/stdio/flockfile.c?view=markup http://svn.berlios.de/viewcvs/haiku/haiku/trunk/src/system/libroot/posix/glibc/libio/flockfile.c?view=markup http://svn.berlios.de/viewcvs/haiku/haiku/trunk/src/system/libroot/posix/glibc/libio/stdio.c?rev=12359&view=markup http://svn.berlios.de/viewcvs/haiku/haiku/trunk/src/system/libroot/posix/glibc/libio/Jamfile?rev=12359&view=markup
Change History (6)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
I mean:
[revol@Zeta /Data/haiku/trunk]# nm generated/objects/haiku/x86/release/system/libroot/libroot .so |grep unlockfile 0003ef6c T _IO_funlockfile [revol@Zeta /Data/haiku/trunk]# nm /system/lib/libroot.so|grep unlockfile 000262a4 W _IO_funlockfile 000262a4 T __internal_funlockfile 000262a4 W funlockfile
comment:4 by , 18 years ago
Owner: | changed from | to
---|
[revol@Zeta /Data/haiku/trunk]# nm generated/objects/haiku/x86/release/system/libroot/libroot.so |grep unlockfile 0003ef6c T _IO_funlockfile [revol@Zeta /Data/haiku/trunk]# nm /system/lib/libroot.so|grep unlockfile 000262a4 W _IO_funlockfile 000262a4 T internal_funlockfile 000262a4 W funlockfile
It seems we don't export the weak aliases BeOS has... yet.