2
0

threadpriv.c 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "fspr_arch_threadproc.h"
  17. #include "fspr_thread_proc.h"
  18. #include "fspr_portable.h"
  19. #include "fspr_general.h"
  20. #include "fspr_errno.h"
  21. #include "fspr_lib.h"
  22. #include "fspr_arch_file_io.h"
  23. APR_DECLARE(fspr_status_t) fspr_threadkey_private_create(fspr_threadkey_t **key,
  24. void (*dest)(void *),
  25. fspr_pool_t *pool)
  26. {
  27. (*key) = (fspr_threadkey_t *)fspr_palloc(pool, sizeof(fspr_threadkey_t));
  28. if ((*key) == NULL) {
  29. return APR_ENOMEM;
  30. }
  31. (*key)->pool = pool;
  32. return APR_OS2_STATUS(DosAllocThreadLocalMemory(1, &((*key)->key)));
  33. }
  34. APR_DECLARE(fspr_status_t) fspr_threadkey_private_get(void **new, fspr_threadkey_t *key)
  35. {
  36. (*new) = (void *)*(key->key);
  37. return APR_SUCCESS;
  38. }
  39. APR_DECLARE(fspr_status_t) fspr_threadkey_private_set(void *priv, fspr_threadkey_t *key)
  40. {
  41. *(key->key) = (ULONG)priv;
  42. return APR_SUCCESS;
  43. }
  44. APR_DECLARE(fspr_status_t) fspr_threadkey_private_delete(fspr_threadkey_t *key)
  45. {
  46. return APR_OS2_STATUS(DosFreeThreadLocalMemory(key->key));
  47. }
  48. APR_DECLARE(fspr_status_t) fspr_threadkey_data_get(void **data, const char *key,
  49. fspr_threadkey_t *threadkey)
  50. {
  51. return fspr_pool_userdata_get(data, key, threadkey->pool);
  52. }
  53. APR_DECLARE(fspr_status_t) fspr_threadkey_data_set(void *data, const char *key,
  54. fspr_status_t (*cleanup) (void *),
  55. fspr_threadkey_t *threadkey)
  56. {
  57. return fspr_pool_userdata_set(data, key, cleanup, threadkey->pool);
  58. }
  59. APR_DECLARE(fspr_status_t) fspr_os_threadkey_get(fspr_os_threadkey_t *thekey, fspr_threadkey_t *key)
  60. {
  61. *thekey = key->key;
  62. return APR_SUCCESS;
  63. }
  64. APR_DECLARE(fspr_status_t) fspr_os_threadkey_put(fspr_threadkey_t **key,
  65. fspr_os_threadkey_t *thekey,
  66. fspr_pool_t *pool)
  67. {
  68. if (pool == NULL) {
  69. return APR_ENOPOOL;
  70. }
  71. if ((*key) == NULL) {
  72. (*key) = (fspr_threadkey_t *)fspr_pcalloc(pool, sizeof(fspr_threadkey_t));
  73. (*key)->pool = pool;
  74. }
  75. (*key)->key = *thekey;
  76. return APR_SUCCESS;
  77. }