trying to get PATH_MAX
parent
4abdf2f530
commit
66618ec990
|
@ -184,11 +184,12 @@ expand_track_system_listeners(File_Track_System *system, Partition *scratch, voi
|
|||
|
||||
// NOTE(inso): assuming PATH_MAX is a reasonable lower bound of extra memory to get
|
||||
|
||||
if(size < PATH_MAX){
|
||||
if (size < PATH_MAX){
|
||||
result = FileTrack_MemoryTooSmall;
|
||||
} else {
|
||||
vars->string_mem_begin = (char*) mem;
|
||||
vars->string_mem_end = (char*) mem + size;;
|
||||
}
|
||||
else{
|
||||
vars->string_mem_begin = (char*)mem;
|
||||
vars->string_mem_end = (char*)mem + size;;
|
||||
}
|
||||
|
||||
pthread_mutex_unlock(&vars->lock);
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
#include "4ed_font_interface_to_os.h"
|
||||
#include "4ed_system_shared.h"
|
||||
|
||||
#include <sys/syslimits.h>
|
||||
|
||||
#include "unix_4ed_functions.cpp"
|
||||
|
||||
#include "osx_objective_c_to_cpp_links.h"
|
||||
|
|
Loading…
Reference in New Issue