// @(#)root/base:$Name: $:$Id: TSysEvtHandler.cxx,v 1.1.1.1 2000/05/16 17:00:39 rdm Exp $
// Author: Fons Rademakers 16/09/95
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// TSysEvtHandler //
// //
// Abstract base class for handling system events. //
// //
//////////////////////////////////////////////////////////////////////////
#include "TSysEvtHandler.h"
#include "TSystem.h"
ClassImp(TSysEvtHandler)
ClassImp(TFileHandler)
//______________________________________________________________________________
TFileHandler::TFileHandler(int fd, int mask)
{
// Create a file descriptor event handler.
fFileNum = fd;
if (!mask)
mask = 1;
fMask = mask;
}
//______________________________________________________________________________
Bool_t TFileHandler::Notify()
{
// Notify when event occured on descriptor associated with this handler.
return kFALSE;
}
//______________________________________________________________________________
Bool_t TFileHandler::ReadNotify()
{
// Notify when something can be read from the descriptor associated with
// this handler.
return kFALSE;
}
//______________________________________________________________________________
Bool_t TFileHandler::WriteNotify()
{
// Notify when something can be written to the descriptor associated with
// this handler.
return kFALSE;
}
//______________________________________________________________________________
Bool_t TFileHandler::HasReadInterest()
{
// True if handler is interested in read events.
return (fMask & 1);
}
//______________________________________________________________________________
Bool_t TFileHandler::HasWriteInterest()
{
// True if handler is interested in write events.
return (fMask & 2);
}
//______________________________________________________________________________
void TFileHandler::Remove()
{
// Remove file event handler from system file handler list.
if (gSystem && fFileNum != -1)
gSystem->RemoveFileHandler(this);
}
ClassImp(TSignalHandler)
//______________________________________________________________________________
TSignalHandler::TSignalHandler(ESignals sig, Bool_t sync)
{
// Create signal event handler.
fSignal = sig;
fSync = sync;
fDelay = 0;
}
//______________________________________________________________________________
Bool_t TSignalHandler::Notify()
{
// Notify when signal occurs.
return kFALSE;
}
//______________________________________________________________________________
void TSignalHandler::Remove()
{
// Remove signal handler from system signal handler list.
if (gSystem && fSignal != (ESignals)-1)
gSystem->RemoveSignalHandler(this);
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.