You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pi...@apache.org on 2001/07/10 00:00:54 UTC

cvs commit: jakarta-tomcat-connectors/webapp/include wa_main.h

pier        01/07/09 15:00:54

  Modified:    webapp/include wa_main.h
  Log:
  Functions renamed for clarity.
  
  Revision  Changes    Path
  1.5       +4 -14     jakarta-tomcat-connectors/webapp/include/wa_main.h
  
  Index: wa_main.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/include/wa_main.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- wa_main.h	2001/05/10 21:15:00	1.4
  +++ wa_main.h	2001/07/09 22:00:51	1.5
  @@ -58,7 +58,7 @@
   /**
    * @package Main
    * @author  Pier Fumagalli <ma...@eng.sun.com>
  - * @version $Id: wa_main.h,v 1.4 2001/05/10 21:15:00 pier Exp $
  + * @version $Id: wa_main.h,v 1.5 2001/07/09 22:00:51 pier Exp $
    */
   #ifndef _WA_MAIN_H_
   #define _WA_MAIN_H_
  @@ -109,9 +109,9 @@
        * Cleans up all resources allocated by the provider.
        * <br>
        * The provider is notified that no further requests will be handled, and
  -     * the WebApp library is being destroyed.
  +     * the WebApp library is being shut down.
        */
  -    void (*destroy)(void);
  +    void (*shutdown)(void);
   
       /**
        * Configure a connection with the parameter from the web server
  @@ -186,7 +186,7 @@
    * to any other WebApp Library function after this function has been invoked
    * will result in impredictable results.
    */
  -void wa_destroy(void);
  +void wa_shutdown(void);
   
   /**
    * Deploy a web-application.
  @@ -212,16 +212,6 @@
    * @param others The parameters to the format string.
    */
   void wa_debug(const char *f, const int l, const char *fmt, ...);
  -
  -/**
  - * Log an error message.
  - *
  - * @param f The file where this function was called.
  - * @param l The line number where this function was called.
  - * @param fmt The format string of the debug message (printf style).
  - * @param others The parameters to the format string.
  - */
  -void wa_log(const char *f, const int l, const char *fmt, ...);
   
   /**
    * The WebApp library memory pool.