Changes between Version 9 and Version 10 of Ticket #38582, comment 6


Ignore:
Timestamp:
Jul 30, 2013, 11:53:25 PM (11 years ago)
Author:
cooljeanius (Eric Gallager)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v9 v10  
    66|| `AC_CHECK_FUNCS([localtime_r])` || `src/programs/daemondo/main.c:128` || `strftime(datestring, sizeof(datestring), "%F %T", localtime_r(&timestamp, &tm));` || In a log message function || `// Format the date-time stamp` (checking for this function would ensure that the log messages have properly formatted timestamps) ||
    77|| `AC_CHECK_FUNCS([memmove])` || `src/pextlib1.0/filemap.c:746` || `(void) memmove(` || idk really what's going on here... || `/* Push the pointers after the current node lower. */` This function is just one of those good ones to check for ||
    8 || `AC_CHECK_FUNCS([mkdir])` || `src/darwintracelib1.0/darwintrace.c:1153` ||
     8|| `AC_CHECK_FUNCS([mkdir])` || `src/darwintracelib1.0/darwintrace.c:1153` || `int mkdir(const char *path, mode_t mode) {` || new function declaration || `/* Trap attempts to create directories outside the sandbox. */` Make sure there are calls to `mkdir` to trap in the first place ||
    99|| `AC_CHECK_FUNCS([munmap])` || `src/machista1.0/libmachista.c:499` || `munmap(data, st.st_size);` || at the end of a function || `/* Cleanup */` Another one that's just good to check for ||
    1010|| `AC_CHECK_FUNCS([realpath])` || `src/pextlib1.0/realpath.c:67` ||