-#if 0 // obsolete
-/*
- * uio_proc_t - return the proc_t for the given uio_t
- * WARNING - This call is going away. Find another way to get the proc_t!!
- */
-__private_extern__ proc_t uio_proc_t( uio_t a_uio )
-{
-#if LP64_DEBUG
- if (a_uio == NULL) {
- panic("%s :%d - invalid uio_t\n", __FILE__, __LINE__);
- }
-#endif /* LP64_DEBUG */
-
- /* return 0 if there are no active iovecs */
- if (a_uio == NULL) {
- return( NULL );
- }
- return( a_uio->uio_procp );
-}
-
-/*
- * uio_setproc_t - set the residual IO value for the given uio_t
- * WARNING - This call is going away.
- */
-__private_extern__ void uio_setproc_t( uio_t a_uio, proc_t a_proc_t )
-{
- if (a_uio == NULL) {
-#if LP64_DEBUG
- panic("%s :%d - invalid uio_t\n", __FILE__, __LINE__);
-#endif /* LP64_DEBUG */
- return;
- }
-
- a_uio->uio_procp = a_proc_t;
- return;
-}
-#endif // obsolete
-