*resource_info,
                                         u32 resource_info_size);
 
-/*
- *  ======== proc_exit ========
- *  Purpose:
- *      Decrement reference count, and free resources when reference count is
- *      0.
- *  Parameters:
- *  Returns:
- *  Requires:
- *      PROC is initialized.
- *  Ensures:
- *      When reference count == 0, PROC's private resources are freed.
- */
-extern void proc_exit(void);
-
 /*
  * ======== proc_get_dev_object =========
  *  Purpose:
 extern int proc_get_dev_object(void *hprocessor,
                                      struct dev_object **device_obj);
 
-/*
- *  ======== proc_init ========
- *  Purpose:
- *      Initialize PROC's private state, keeping a reference count on each
- *      call.
- *  Parameters:
- *  Returns:
- *      TRUE if initialized; FALSE if error occurred.
- *  Requires:
- *  Ensures:
- *      TRUE: A requirement for the other public PROC functions.
- */
-extern bool proc_init(void);
-
 /*
  *  ======== proc_get_state ========
  *  Purpose:
 
                strm_exit();
                disp_exit();
                node_exit();
-               proc_exit();
                mgr_exit();
                rmm_exit();
        }
 {
        bool ret = true;
        bool fdev, fchnl, fmsg, fio;
-       bool fmgr, fproc, fnode, fdisp, fstrm, frmm;
+       bool fmgr, fnode, fdisp, fstrm, frmm;
 
        if (api_c_refs == 0) {
                /* initialize driver and other modules */
                fmgr = mgr_init();
-               fproc = proc_init();
                fnode = node_init();
                fdisp = disp_init();
                fstrm = strm_init();
                fio = io_init();
                fdev = dev_init();
                ret = fdev && fchnl && fmsg && fio;
-               ret = ret && fmgr && fproc && frmm;
+               ret = ret && fmgr && frmm;
                if (!ret) {
 
                        if (fmgr)
                        if (fstrm)
                                strm_exit();
 
-                       if (fproc)
-                               proc_exit();
-
                        if (fnode)
                                node_exit();
 
 
        struct list_head proc_list;
 };
 
-static u32 refs;
-
 DEFINE_MUTEX(proc_lock);       /* For critical sections */
 
 /*  ----------------------------------- Function Prototypes */
        return status;
 }
 
-/*
- *  ======== proc_exit ========
- *  Purpose:
- *      Decrement reference count, and free resources when reference count is
- *      0.
- */
-void proc_exit(void)
-{
-       refs--;
-}
-
 /*
  *  ======== proc_get_dev_object ========
  *  Purpose:
        return status;
 }
 
-/*
- *  ======== proc_init ========
- *  Purpose:
- *      Initialize PROC's private state, keeping a reference count on each call
- */
-bool proc_init(void)
-{
-       bool ret = true;
-
-       if (ret)
-               refs++;
-
-       return ret;
-}
-
 /*
  *  ======== proc_load ========
  *  Purpose: