ThreadLocalStorage.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef ThreadLocalStorage_H
  19. #define ThreadLocalStorage_H
  20. #include "atmiBrokerCoreMacro.h"
  21. // key for storing control in thread specific storage
  22. const int TSS_KEY = 0xaf; // key for accessing OTS control
  23. const int TSS_SIG_KEY = 0xb0; // key for communicating receipt of a signal
  24. const int SVC_KEY = 0xb1; // key for accessing atmi service
  25. const int SVC_SES = 0xb4; // key for accessing service session
  26. const int TPE_KEY = 0xa5; // key for accessing tperrno
  27. const int TPR_KEY = 0xb6; // key for accessing tpurcode
  28. // define other keys here
  29. extern BLACKTIE_CORE_DLL int getKey();
  30. extern BLACKTIE_CORE_DLL bool setSpecific(int key, void* threadData);
  31. extern BLACKTIE_CORE_DLL void* getSpecific(int key);
  32. extern BLACKTIE_CORE_DLL bool destroySpecific(int key);
  33. extern BLACKTIE_CORE_DLL char* TSS_TPERESET;
  34. extern BLACKTIE_CORE_DLL char* TSS_TPEBADDESC;
  35. extern BLACKTIE_CORE_DLL char* TSS_TPEBLOCK;
  36. extern BLACKTIE_CORE_DLL char* TSS_TPEINVAL;
  37. extern BLACKTIE_CORE_DLL char* TSS_TPELIMIT;
  38. extern BLACKTIE_CORE_DLL char* TSS_TPENOENT;
  39. extern BLACKTIE_CORE_DLL char* TSS_TPEOS;
  40. extern BLACKTIE_CORE_DLL char* TSS_TPEPROTO;
  41. extern BLACKTIE_CORE_DLL char* TSS_TPESVCERR;
  42. extern BLACKTIE_CORE_DLL char* TSS_TPESVCFAIL;
  43. extern BLACKTIE_CORE_DLL char* TSS_TPESYSTEM;
  44. extern BLACKTIE_CORE_DLL char* TSS_TPETIME;
  45. extern BLACKTIE_CORE_DLL char* TSS_TPETRAN;
  46. extern BLACKTIE_CORE_DLL char* TSS_TPGOTSIG;
  47. extern BLACKTIE_CORE_DLL char* TSS_TPEITYPE;
  48. extern BLACKTIE_CORE_DLL char* TSS_TPEOTYPE;
  49. extern BLACKTIE_CORE_DLL char* TSS_TPEEVENT;
  50. extern BLACKTIE_CORE_DLL char* TSS_TPEMATCH;
  51. #endif //ThreadLocalStorage_H