Remove ancient Purify support in kadmind
authorGreg Hudson <ghudson@mit.edu>
Fri, 2 Sep 2011 17:07:55 +0000 (17:07 +0000)
committerGreg Hudson <ghudson@mit.edu>
Fri, 2 Sep 2011 17:07:55 +0000 (17:07 +0000)
From npmccallum@redhat.com.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25130 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/server/ovsec_kadmd.c

index 3e81d9dca4f444129fdb952b7ce77877070eb316..b817f3ad1361cf36e39b270165d7253518657571 100644 (file)
 
 #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 @@ int main(int argc, char *argv[])
     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 setup_signal_handlers(iprop_role iproprole) {
     (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 @@ void setup_signal_handlers(iprop_role iproprole) {
     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,51 +681,6 @@ void setup_signal_handlers(iprop_role iproprole) {
 #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
  *