Diff for /libaitio/inc/aitio.h between versions 1.38.10.16 and 1.38.10.17

version 1.38.10.16, 2013/12/12 21:17:53 version 1.38.10.17, 2013/12/15 22:31:44
Line 82  typedef struct { Line 82  typedef struct {
         unsigned int                    prog_inin;      /* init progs */          unsigned int                    prog_inin;      /* init progs */
         unsigned int                    prog_maxn;      /* max progs */          unsigned int                    prog_maxn;      /* max progs */
         unsigned int                    prog_cnum;      /* current progs */          unsigned int                    prog_cnum;      /* current progs */
           unsigned int                    prog_poll;      /* purge unused instances after sec */
         char                            prog_name[PATH_MAX];          char                            prog_name[PATH_MAX];
   
         pthread_mutex_t                 prog_mtx;          pthread_mutex_t                 prog_mtx;
Line 184  int io_progVacuum(prog_t * __restrict prg, unsigned in Line 185  int io_progVacuum(prog_t * __restrict prg, unsigned in
  * return: 0 error or !=0 closed program   * return: 0 error or !=0 closed program
  */   */
 int io_progCloseAt(prog_t * __restrict prg, unsigned int idx);  int io_progCloseAt(prog_t * __restrict prg, unsigned int idx);
   /*
    * io_progCloseOf() - Close program at pool with certain handle
    *
    * @prg = program pool
    * @h = handle of program
    * return: 0 error, >0 closed programs
    */
   #ifdef POPEN_STREAM
   int io_progCloseOf(prog_t * __restrict prg, FILE *h);
   #else
   int io_progCloseOf(prog_t * __restrict prg, int h);
   #endif
 /*  /*
  * io_progClose() - Close all programs in pool   * io_progClose() - Close all programs in pool
  *   *

Removed from v.1.38.10.16  
changed lines
  Added in v.1.38.10.17


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>