ThreadLocalStorage.cxx
上传用户: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. #include "ThreadLocalStorage.h"
  19. #include "ace/TSS_T.h"
  20. #include <map>
  21. #include <iostream>
  22. class TSSData {
  23. public:
  24. ~TSSData() {
  25. }
  26. bool set(int k, void* v) {
  27. tssmap[k] = v;
  28. return true;
  29. }
  30. void* get(int k) {
  31. return tssmap[k];
  32. }
  33. bool destroy(int k) {
  34. tssmap[k] = 0;
  35. return true;
  36. }
  37. std::map<int, void*> tssmap;
  38. };
  39. static ACE_TSS<TSSData> tss;
  40. extern int getKey() {
  41. return -1;
  42. }
  43. extern bool setSpecific(int key, void* threadData) {
  44. return tss->set(key, threadData);
  45. }
  46. extern void* getSpecific(int key) {
  47. return tss->get(key);
  48. }
  49. extern bool destroySpecific(int key) {
  50. return tss->destroy(key);
  51. }
  52. char* TSS_TPERESET = (char*) "0";
  53. char* TSS_TPEBADDESC = (char*) "2";
  54. char* TSS_TPEBLOCK = (char*) "3";
  55. char* TSS_TPEINVAL = (char*) "4";
  56. char* TSS_TPELIMIT = (char*) "5";
  57. char* TSS_TPENOENT = (char*) "6";
  58. char* TSS_TPEOS = (char*) "7";
  59. char* TSS_TPEPROTO = (char*) "9";
  60. char* TSS_TPESVCERR = (char*) "10";
  61. char* TSS_TPESVCFAIL = (char*) "11";
  62. char* TSS_TPESYSTEM = (char*) "12";
  63. char* TSS_TPETIME = (char*) "13";
  64. char* TSS_TPETRAN = (char*) "14";
  65. char* TSS_TPGOTSIG = (char*) "15";
  66. char* TSS_TPEITYPE = (char*) "17";
  67. char* TSS_TPEOTYPE = (char*) "18";
  68. char* TSS_TPEEVENT = (char*) "22";
  69. char* TSS_TPEMATCH = (char*) "23";