hxsignal.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:2k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK *****  
  2.  * Source last modified: $Id: hxsignal.h,v 1.1 2003/07/25 21:27:32 ping Exp $ 
  3.  *   
  4.  * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
  5.  *       
  6.  * The contents of this file, and the files included with this file, 
  7.  * are subject to the current version of the RealNetworks Public 
  8.  * Source License (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the current version of the RealNetworks Community 
  11.  * Source License (the "RCSL") available at 
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
  13.  * will apply. You may also obtain the license terms directly from 
  14.  * RealNetworks.  You may not use this file except in compliance with 
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable 
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
  17.  * the rights, obligations and limitations governing use of the 
  18.  * contents of the file. 
  19.  *   
  20.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  21.  * developer of the Original Code and owns the copyrights in the 
  22.  * portions it created. 
  23.  *   
  24.  * This file, and the files included with this file, is distributed 
  25.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
  26.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
  27.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
  28.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
  29.  * ENJOYMENT OR NON-INFRINGEMENT. 
  30.  *  
  31.  * Technology Compatibility Kit Test Suite(s) Location:  
  32.  *    http://www.helixcommunity.org/content/tck  
  33.  *  
  34.  * Contributor(s):  
  35.  *   
  36.  * ***** END LICENSE BLOCK ***** */  
  37. #ifndef _HXSIGNAL_H
  38. #define _HXSIGNAL_H
  39. #if defined _SUN || defined _SOLARIS || defined _IRIX || defined _AIX || defined _HPUX
  40. #define HX_SYSTEMV_SIGNALS
  41. #endif
  42. #ifdef HX_SYSTEMV_SIGNALS
  43. #define SIGNAL(_x, _y)
  44.     sigset(_x, _y)
  45.     
  46. #define IN_HANDLER(_x, _y)
  47.     
  48. #define KILLPG(_x, _y)
  49.     kill(-_x, _y)
  50. #define KILL(_x, _y)
  51.     kill(_x, _y)    
  52. #else
  53. #define SIGNAL(_x, _y)
  54.     signal(_x, _y)
  55.     
  56. #define IN_HANDLER(_x, _y)
  57.     signal(_x, _y)
  58.     
  59. #define KILLPG(_x, _y)
  60.     killpg(_x, _y)
  61.     
  62. #define KILL(_x, _y)
  63.     kill(_x, _y)
  64.     
  65. #endif
  66.     
  67. #endif