port.cc
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998, 1999  Andreas Mueller <mueller@daneb.ping.de>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19. /*
  20.  * $Log: port.cc,v $
  21.  * Revision 1.1  1999/05/11 20:03:29  mueller
  22.  * Initial revision
  23.  *
  24.  */
  25. static char rcsid[] = "$Id: port.cc,v 1.1 1999/05/11 20:03:29 mueller Exp mueller $";
  26. #include <config.h>
  27. #include <unistd.h>
  28. #include <signal.h>
  29. #include <errno.h>
  30. #include <string.h>
  31. #ifdef USE_POSIX_THREADS
  32. #include <pthread.h>
  33. #endif
  34. #if defined(HAVE_USLEEP)
  35. #else
  36. #include <sys/time.h>
  37. #include <sys/types.h>
  38. #endif
  39. #include "port.h"
  40. #include "util.h"
  41. void mSleep(long milliSeconds)
  42. {
  43. #if defined(HAVE_USLEEP)
  44.   usleep(milliSeconds * 1000);
  45. #else
  46.   struct timeval tv;
  47.   tv.tv_sec = 0;
  48.   tv.tv_usec = 1000 * milliSeconds;
  49.   select(0, NULL, NULL, NULL, &tv);
  50. #endif
  51. }
  52. // Installs signal handler for signal 'sig' that will stay installed after
  53. // it is called.
  54. void installSignalHandler(int sig, SignalHandler handler)
  55. {
  56.   struct sigaction action;
  57.   memset(&action, 0, sizeof(action));
  58.   action.sa_handler = handler;
  59.   sigemptyset(&(action.sa_mask));
  60.   if (sigaction(sig, &action, NULL) != 0) 
  61.     message(-2, "Cannot install signal handler: %s", strerror(errno));
  62. }
  63. // Blocks specified signal.
  64. void blockSignal(int sig)
  65. {
  66.   sigset_t set;
  67.   sigemptyset(&set);
  68.   sigaddset(&set, sig);
  69. #ifdef USE_POSIX_THREADS
  70. #ifdef HAVE_PTHREAD_SIGMASK
  71.   pthread_sigmask(SIG_BLOCK, &set, NULL);
  72. #endif
  73. #else
  74.   sigprocmask(SIG_BLOCK, &set, NULL);
  75. #endif
  76. }
  77. // Unblocks specified signal.
  78. void unblockSignal(int sig)
  79. {
  80.   sigset_t set;
  81.   sigemptyset(&set);
  82.   sigaddset(&set, sig);
  83. #ifdef USE_POSIX_THREADS
  84. #ifdef HAVE_PTHREAD_SIGMASK
  85.   pthread_sigmask(SIG_UNBLOCK, &set, NULL);
  86. #endif
  87. #else
  88.   sigprocmask(SIG_UNBLOCK, &set, NULL);
  89. #endif
  90. }