warning addtooverflowlist


 
Thread Tools Search this Thread
Operating Systems SCO warning addtooverflowlist
# 1  
Old 07-20-2004
warning addtooverflowlist

Does anyone know what this warning means we get it now and then. We just repalced aour hard drive and reinstalled sco and now get this warning:

warning: Addtooverflowlist rp=F02967ac ha=0 id=0 lun=0

CAn anyone help on this problem. I have searched the web but cant find anything.
thanks

Last edited by davekasp; 07-23-2004 at 02:50 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XtErrorHandler()														  XtErrorHandler()

Name
  XtErrorHandler - interface definition for low-level error and warning handler procedures.

Synopsis
  typedef void (*XtErrorHandler)(String);
	 String message;

Inputs
  message   Specifies the error message.

Description
  An  XtErrorHandler  is registered as an error or warning handler with XtAppSetErrorHandler() or XtAppSetWarningHandler().  It is invoked by
  XtAppError() or XtAppError().  The error handler should display the specified string in some appropriate fashion.   Some  applications  may
  wish to log errors to a file as well.  Error handlers should exit; warning handlers should return.

  See XtErrorMsgHandler(2) for a description of the high-level error and warning handler procedure.

Example
  The  Intrinsics  default  error  and	warning handlers are shown below.  The XTERROR_PREFIX and XTWARNING_PREFIX symbols are by default the
  empty string in the MIT implementation, but may be configured when the Intrinsics are compiled.

     void _XtDefaultError(message)
	 String message;
     {
	 extern void exit();

	 (void)fprintf(stderr, "%sError: %s0, XTERROR_PREFIX, message);
	 exit(1);
     }

     void _XtDefaultWarning(message)
	 String message;
     {
	 if (message && *message)
	    (void)fprintf(stderr, "%sWarning: %s0, XTWARNING_PREFIX, message);
	 return;
     }

See Also
  XtAppError(1), XtAppSetErrorHandler(1), XtAppSetWarningHandler(1), XtAppWarning(1),
  XtErrorMsgHandler(1).

Xt - Error Handling														  XtErrorHandler()