diff options
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/box64context.h | 10 | ||||
| -rwxr-xr-x | src/include/elfloader.h | 8 | ||||
| -rwxr-xr-x | src/include/regs.h | 4 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/include/box64context.h b/src/include/box64context.h index 010521e8..1920bb8a 100755 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -107,7 +107,7 @@ typedef struct box64context_s { lib_t *maplib; // lib and symbols handling lib_t *local_maplib; // libs and symbols openned has local (only collection of libs, no symbols) - dic_t *versym; // dictionnary of versionned symbols + dic_t *versym; // dictionnary of versioned symbols kh_threadstack_t *stacksizes; // stack sizes attributes for thread (temporary) bridge_t *system; // other bridges @@ -148,10 +148,10 @@ typedef struct box64context_s { void* sdl2allocrw; // SDL2 AllocRW/FreeRW function void* sdl2freerw; - int deferedInit; - elfheader_t **deferedInitList; - int deferedInitSz; - int deferedInitCap; + int deferredInit; + elfheader_t **deferredInitList; + int deferredInitSz; + int deferredInitCap; pthread_key_t tlskey; // then tls key to have actual tlsdata void* tlsdata; // the initial global tlsdata diff --git a/src/include/elfloader.h b/src/include/elfloader.h index d5116f56..c197249d 100755 --- a/src/include/elfloader.h +++ b/src/include/elfloader.h @@ -37,7 +37,7 @@ uintptr_t GetElfFini(elfheader_t* h); void RefreshElfTLS(elfheader_t* h); void RunElfInit(elfheader_t* h, x64emu_t *emu); void RunElfFini(elfheader_t* h, x64emu_t *emu); -void RunDeferedElfInit(x64emu_t *emu); +void RunDeferredElfInit(x64emu_t *emu); void MarkElfInitDone(elfheader_t* h); void* GetBaseAddress(elfheader_t* h); void* GetElfDelta(elfheader_t* h); @@ -60,15 +60,15 @@ int ElfCheckIfUseTCMallocMinimal(elfheader_t* h); // return 1 if tcmalloc is u const char* GetSymbolVersion(elfheader_t* h, int version); const char* GetParentSymbolVersion(elfheader_t* h, int index); -const char* VersionnedName(const char* name, int ver, const char* vername); -int SameVersionnedSymbol(const char* name1, int ver1, const char* vername1, const char* name2, int ver2, const char* vername2); +const char* VersionedName(const char* name, int ver, const char* vername); +int SameVersionedSymbol(const char* name1, int ver1, const char* vername1, const char* name2, int ver2, const char* vername2); int GetVersionIndice(elfheader_t* h, const char* vername); kh_mapsymbols_t* GetMapSymbols(elfheader_t* h); kh_mapsymbols_t* GetWeakSymbols(elfheader_t* h); kh_mapsymbols_t* GetLocalSymbols(elfheader_t* h); -void* GetNativeSymbolUnversionned(void* lib, const char* name); +void* GetNativeSymbolUnversioned(void* lib, const char* name); void AddMainElfToLinkmap(elfheader_t* lib); diff --git a/src/include/regs.h b/src/include/regs.h index 0097e723..7a4ced73 100755 --- a/src/include/regs.h +++ b/src/include/regs.h @@ -131,7 +131,7 @@ typedef enum { d_rcr16, d_rcr32, d_rcr64, - d_dec8i, // interpretor version, to handle the CF flags that is untouched + d_dec8i, // interpreter version, to handle the CF flags that is untouched d_dec16i, d_dec32i, d_dec64i, @@ -140,7 +140,7 @@ typedef enum { d_inc32i, d_inc64i, d_unknown //95 -} defered_flags_t; +} deferred_flags_t; #pragma pack(push, 1) |