[25640] in CVS-changelog-for-Kerberos-V5

home help back first fref pref prev next nref lref last post

svn rev #25130: trunk/src/kadmin/server/

daemon@ATHENA.MIT.EDU (ghudson@mit.edu)
Fri Sep 2 13:07:57 2011

Date: Fri, 2 Sep 2011 13:07:55 -0400
From: ghudson@mit.edu
Message-Id: <201109021707.p82H7tOi005628@drugstore.mit.edu>
To: cvs-krb5@mit.edu
Reply-To: krbdev@mit.edu
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: cvs-krb5-bounces@mit.edu

http://src.mit.edu/fisheye/changelog/krb5/?cs=25130
Commit By: ghudson
Log Message:
Remove ancient Purify support in kadmind.

>From npmccallum@redhat.com.


Changed Files:
U   trunk/src/kadmin/server/ovsec_kadmd.c
Modified: trunk/src/kadmin/server/ovsec_kadmd.c
===================================================================
--- trunk/src/kadmin/server/ovsec_kadmd.c	2011-09-02 17:07:52 UTC (rev 25129)
+++ trunk/src/kadmin/server/ovsec_kadmd.c	2011-09-02 17:07:55 UTC (rev 25130)
@@ -59,15 +59,6 @@
 
 #include    "misc.h"
 
-#ifdef PURIFY
-#include    "purify.h"
-
-int     signal_pure_report = 0;
-int     signal_pure_clear = 0;
-void    request_pure_report(int);
-void    request_pure_clear(int);
-#endif /* PURIFY */
-
 #if defined(NEED_DAEMON_PROTO)
 extern int daemon(int, int);
 #endif
@@ -262,9 +253,6 @@
     names[0].type = names[1].type = names[2].type = names[3].type =
         nt_krb5_name_oid;
 
-#ifdef PURIFY
-    purify_start_batch();
-#endif /* PURIFY */
     whoami = (strrchr(argv[0], '/') ? strrchr(argv[0], '/')+1 : argv[0]);
 
     nofork = 0;
@@ -668,12 +656,6 @@
     (void) sigaction(SIGHUP, &s_action, (struct sigaction *) NULL);
     s_action.sa_handler = SIG_IGN;
     (void) sigaction(SIGPIPE, &s_action, (struct sigaction *) NULL);
-#ifdef PURIFY
-    s_action.sa_handler = request_pure_report;
-    (void) sigaction(SIGUSR1, &s_action, (struct sigaction *) NULL);
-    s_action.sa_handler = request_pure_clear;
-    (void) sigaction(SIGUSR2, &s_action, (struct sigaction *) NULL);
-#endif /* PURIFY */
 
     /*
      * IProp will fork for a full-resync, we don't want to
@@ -689,10 +671,6 @@
     signal(SIGQUIT, request_exit);
     signal(SIGHUP, request_hup);
     signal(SIGPIPE, SIG_IGN);
-#ifdef PURIFY
-    signal(SIGUSR1, request_pure_report);
-    signal(SIGUSR2, request_pure_clear);
-#endif /* PURIFY */
 
     /*
      * IProp will fork for a full-resync, we don't want to
@@ -703,52 +681,7 @@
 #endif /* POSIX_SIGNALS */
 }
 
-#ifdef PURIFY
 /*
- * Function: request_pure_report
- *
- * Purpose: sets flag saying the server got a signal and that it should
- *              dump a purify report when convenient.
- *
- * Arguments:
- * Requires:
- * Effects:
- * Modifies:
- *      sets signal_pure_report to one
- */
-
-void request_pure_report(int signum)
-{
-    krb5_klog_syslog(LOG_DEBUG, "Got signal to request a Purify report");
-    signal_pure_report = 1;
-    return;
-}
-
-/*
- * Function: request_pure_clear
- *
- * Purpose: sets flag saying the server got a signal and that it should
- *              dump a purify report when convenient, then clear the
- *              purify tables.
- *
- * Arguments:
- * Requires:
- * Effects:
- * Modifies:
- *      sets signal_pure_report to one
- *      sets signal_pure_clear to one
- */
-
-void request_pure_clear(int signum)
-{
-    krb5_klog_syslog(LOG_DEBUG, "Got signal to request a Purify report and clear the old Purify info");
-    signal_pure_report = 1;
-    signal_pure_clear = 1;
-    return;
-}
-#endif /* PURIFY */
-
-/*
  * Function: request_hup
  *
  * Purpose: sets flag saying the server got a signal and that it should

_______________________________________________
cvs-krb5 mailing list
cvs-krb5@mit.edu
https://mailman.mit.edu/mailman/listinfo/cvs-krb5

home help back first fref pref prev next nref lref last post