Skip to content

Commit

Permalink
Fix the readdir_r wrapping for Evergreen SB16
Browse files Browse the repository at this point in the history
b/358518924

Change-Id: I7387756a3769d60595a86c29a7b6aa2afdd9385f
  • Loading branch information
y4vor committed Aug 16, 2024
1 parent b9ae574 commit 10bbfab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starboard/elf_loader/exported_symbols.cc
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,6 @@ ExportedSymbols::ExportedSymbols() {
REGISTER_SYMBOL(opendir);
REGISTER_SYMBOL(posix_memalign);
REGISTER_SYMBOL(read);
REGISTER_SYMBOL(readdir_r);
REGISTER_SYMBOL(realloc);
REGISTER_SYMBOL(recv);
REGISTER_SYMBOL(send);
Expand Down Expand Up @@ -587,6 +586,7 @@ ExportedSymbols::ExportedSymbols() {
map_["pthread_setname_np"] =
reinterpret_cast<const void*>(&__abi_wrap_pthread_setname_np);
map_["read"] = reinterpret_cast<const void*>(&__abi_wrap_read);
map_["readdir_r"] = reinterpret_cast<const void*>(&__abi_wrap_readdir_r);
map_["stat"] = reinterpret_cast<const void*>(&__abi_wrap_stat);
map_["time"] = reinterpret_cast<const void*>(&__abi_wrap_time);
map_["accept"] = reinterpret_cast<const void*>(&__abi_wrap_accept);
Expand Down

0 comments on commit 10bbfab

Please sign in to comment.