]> Zhao Yanbai Git Server - minix.git/commitdiff
pm: remove dead function
authorArun Thomas <arun@minix3.org>
Thu, 11 Aug 2011 15:45:20 +0000 (17:45 +0200)
committerArun Thomas <arun@minix3.org>
Thu, 11 Aug 2011 15:51:27 +0000 (17:51 +0200)
servers/pm/main.c

index a41e8a5a08de1d0fe23095317386948e73da9bb1..01a7f367b5e363fb5bdf0e76cc8b8f3863f48069 100644 (file)
@@ -399,26 +399,6 @@ int queue;                         /* store mem chunks here */
   return nice_val;
 }
 
-void checkme(char *str, int line)
-{
-       struct mproc *trmp;
-       int boned = 0;
-       int proc_nr;
-       for (proc_nr=0, trmp=mproc; proc_nr < NR_PROCS; proc_nr++, trmp++) {
-               if ((trmp->mp_flags & (REPLY | IN_USE | EXITING)) ==
-                  (REPLY | IN_USE)) {
-                       int tp;
-                       if(pm_isokendpt(trmp->mp_endpoint, &tp) != OK) {
-                          printf("PM: %s:%d: reply %d to %s is bogus endpoint %d after call %d by %d\n",
-                               str, line, trmp->mp_reply.m_type,
-                               trmp->mp_name, trmp->mp_endpoint, call_nr, who_e);
-                          boned=1;
-                       }
-               }
-               if(boned) panic("corrupt mp_endpoint?");
-       }
-}
-
 /*===========================================================================*
  *                             handle_vfs_reply                             *
  *===========================================================================*/