trying to get PATH_MAX

master
Allen Webster 2017-06-30 21:36:51 -04:00
parent 4abdf2f530
commit 66618ec990
2 changed files with 7 additions and 4 deletions

View File

@ -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 // 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; result = FileTrack_MemoryTooSmall;
} else { }
vars->string_mem_begin = (char*) mem; else{
vars->string_mem_end = (char*) mem + size;; vars->string_mem_begin = (char*)mem;
vars->string_mem_end = (char*)mem + size;;
} }
pthread_mutex_unlock(&vars->lock); pthread_mutex_unlock(&vars->lock);

View File

@ -43,6 +43,8 @@
#include "4ed_font_interface_to_os.h" #include "4ed_font_interface_to_os.h"
#include "4ed_system_shared.h" #include "4ed_system_shared.h"
#include <sys/syslimits.h>
#include "unix_4ed_functions.cpp" #include "unix_4ed_functions.cpp"
#include "osx_objective_c_to_cpp_links.h" #include "osx_objective_c_to_cpp_links.h"