You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/10/08 15:35:21 UTC

cvs commit: apache-2.0/src/lib/apr/include apr_file_io.h apr_lib.h apr_thread_proc.h apr_config.h.in

rbb         99/10/08 06:35:21

  Modified:    src/lib/apr/include apr_file_io.h apr_lib.h
                        apr_thread_proc.h
  Removed:     src/lib/apr/include apr_config.h.in
  Log:
  Remove the final generated file from the APR tree.
  
  Revision  Changes    Path
  1.9       +1 -0      apache-2.0/src/lib/apr/include/apr_file_io.h
  
  Index: apr_file_io.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_file_io.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apr_file_io.h	1999/10/06 23:03:59	1.8
  +++ apr_file_io.h	1999/10/08 13:35:16	1.9
  @@ -111,6 +111,7 @@
   ap_status_t ap_close(ap_file_t *);
   ap_status_t ap_remove_file(char *, ap_context_t *);
   ap_status_t ap_eof(ap_file_t *);
  +ap_status_t ap_ferror(ap_file_t *);
   
   ap_status_t ap_read(ap_file_t *, void *, ap_ssize_t *);
   ap_status_t ap_write(ap_file_t *, void *, ap_ssize_t *);
  
  
  
  1.10      +3 -2      apache-2.0/src/lib/apr/include/apr_lib.h
  
  Index: apr_lib.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_lib.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- apr_lib.h	1999/09/20 22:18:46	1.9
  +++ apr_lib.h	1999/10/08 13:35:16	1.10
  @@ -164,6 +164,8 @@
    * Define the prototypes for the various APR GP routines.
    */
   API_EXPORT(char *) ap_cpystrn(char *d, const char *s, size_t l);
  +API_EXPORT(int) ap_tokenize_to_argv(ap_context_t *token_context,
  +                                    char *arg_str, char ***argv_out);
   /*API_EXPORT(ap_mutex_t *) ap_create_mutex(void *m);*/
   API_EXPORT(int) ap_slack(int l, int h);
   API_EXPORT_NONSTD(int) ap_execle(const char *c, const char *a, ...);
  @@ -371,9 +373,8 @@
   API_EXPORT(ap_status_t) ap_getpass(const char *prompt, char *pwbuf, size_t *bufsize);
   API_EXPORT_NONSTD(ap_status_t) ap_null_cleanup(void *data);
   
  -/*API_EXPORT(void) ap_note_subprocess(ap_pool_t *a, pid_t pid,
  +API_EXPORT(void) ap_note_subprocess(struct context_t *a, pid_t pid,
   				     enum kill_conditions how);
  -*/
   API_EXPORT(int)
   	ap_spawn_child(ap_context_t *p,
   			int (*func) (void *a, ap_child_info_t *c),
  
  
  
  1.4       +3 -3      apache-2.0/src/lib/apr/include/apr_thread_proc.h
  
  Index: apr_thread_proc.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_thread_proc.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_thread_proc.h	1999/10/04 16:36:55	1.3
  +++ apr_thread_proc.h	1999/10/08 13:35:16	1.4
  @@ -112,7 +112,7 @@
   ap_status_t ap_createprocattr_init(ap_procattr_t **, ap_context_t *);
   ap_status_t ap_setprocattr_io(ap_procattr_t *, ap_int32_t, ap_int32_t, 
                                 ap_int32_t);
  -ap_status_t ap_setprocattr_dir(ap_procattr_t *, char *);
  +ap_status_t ap_setprocattr_dir(ap_procattr_t *, const char *);
   ap_status_t ap_setprocattr_cmdtype(ap_procattr_t *, ap_cmdtype_e);
   ap_status_t ap_setprocattr_detach(ap_procattr_t *, ap_int32_t);
   ap_status_t ap_get_procdata(ap_proc_t *, char *, void *);
  @@ -124,8 +124,8 @@
   ap_status_t ap_get_childerr(ap_file_t **, ap_proc_t *);
   
   ap_status_t ap_fork(ap_proc_t **, ap_context_t *);
  -ap_status_t ap_create_process(ap_context_t *, char *, char *const [], char **, 
  -                              ap_procattr_t *, ap_proc_t **);
  +ap_status_t ap_create_process(ap_proc_t **, ap_context_t *, const char *, 
  +                              char *const [], char **, ap_procattr_t *);
   ap_status_t ap_wait_proc(ap_proc_t *, ap_wait_how_e);
   
   ap_status_t ap_kill(ap_proc_t *, ap_int32_t);