Changeset 1863 for trunk/src/kmk/dep.h


Ignore:
Timestamp:
Oct 14, 2008, 11:46:23 AM (17 years ago)
Author:
bird
Message:

kmk: Allocation caches for nameseq, dep and idep. next: variable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/dep.h

    r1848 r1863  
    5959
    6060
     61
     62#ifndef CONFIG_WITH_ALLOC_CACHES
    6163struct nameseq *multi_glob (struct nameseq *chain, unsigned int size);
     64#else
     65struct nameseq *multi_glob (struct nameseq *chain, struct alloccache *cache);
     66#endif
    6267#ifdef VMS
    6368struct nameseq *parse_file_seq ();
    6469#else
     70# ifndef CONFIG_WITH_ALLOC_CACHES
    6571struct nameseq *parse_file_seq (char **stringp, int stopchar, unsigned int size, int strip);
     72# else
     73struct nameseq *parse_file_seq (char **stringp, int stopchar, struct alloccache *cache, int strip);
     74# endif
    6675#endif
    6776char *tilde_expand (const char *name);
Note: See TracChangeset for help on using the changeset viewer.