Changes between Version 24 and Version 25 of Ticket #38582, comment 6


Ignore:
Timestamp:
Aug 6, 2013, 11:08:13 PM (11 years ago)
Author:
cooljeanius (Eric Gallager)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v24 v25  
    3434|| `AC_FUNC_FORK` || `src/machista1.0/tests/libmachista-test.c:25` || `pid_t p = fork();` || Tests forking capabilities || "`// forking helper`." If we check for `fork`ing characteristics with `autoconf`, we might not have to have a separate test file do it for us (?) ||
    3535|| `AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK` || `src/darwintracelib1.0/darwintrace.c:1029` || `if (lstat(path, &sb) == 0) {` || condition for checking symlinks || `/* for symlinks, we want to capture both the original path and the modified one, since for /usr/bin/gcc -> gcc-4.0, both "gcc_select" and "gcc" are contributors */` Checking for this with `autoconf` could also help with things related to #39850 and stuff... ||
    36 || `AC_FUNC_MALLOC` || `src/cregistry/entry.c:88` ||
     36|| `AC_FUNC_MALLOC` || `src/cregistry/entry.c:88` || `reg_entry* e = malloc(sizeof(reg_entry));` || does some sqlite3 conversion for the registry || `malloc`-ing is just one of those things you should be checking anyways; I'm surprised the `configure` script doesn't already do this... ||
    3737|| `AC_FUNC_MMAP` || `src/machista1.0/libmachista.c:469` ||
    3838|| `AC_FUNC_REALLOC` || `src/cregistry/util.c:56` ||