diff options
author | Sverker Eriksson <[email protected]> | 2013-09-13 18:48:18 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-09-13 18:48:18 +0200 |
commit | 439d7e1b81b77e3930d81a6ea9bbadb3cff30fa4 (patch) | |
tree | 4747ad5bee962914719ebae5d70073c263c3d097 /erts/emulator/beam/global.h | |
parent | 43b1f1755b1ca9003d88655bfebe5ca9e46cfbf6 (diff) | |
download | otp-439d7e1b81b77e3930d81a6ea9bbadb3cff30fa4.tar.gz otp-439d7e1b81b77e3930d81a6ea9bbadb3cff30fa4.tar.bz2 otp-439d7e1b81b77e3930d81a6ea9bbadb3cff30fa4.zip |
erts: Fix loading of NIF library with unicode in path
Diffstat (limited to 'erts/emulator/beam/global.h')
-rwxr-xr-x | erts/emulator/beam/global.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index e3a0487aeb..11e464b639 100755 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -849,7 +849,7 @@ void erts_lcnt_enable_io_lock_count(int enable); /* driver_tab.c */ typedef void *(*ErtsStaticNifInitFPtr)(void); -ErtsStaticNifInitFPtr erts_static_nif_get_nif_init(const char *name); +ErtsStaticNifInitFPtr erts_static_nif_get_nif_init(const char *name, int len); int erts_is_static_nif(void *handle); void erts_init_static_drivers(void); @@ -858,7 +858,6 @@ void erl_drv_thr_init(void); /* utils.c */ void erts_cleanup_offheap(ErlOffHeap *offheap); -const char *erts_basename(const char* path, char* buff); Uint64 erts_timestamp_millis(void); |