You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under both the BSD-style license (found in the
  6. * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  7. * in the COPYING file in the root directory of this source tree).
  8. * You may select, at your option, one of the above-listed licenses.
  9. */
  10. #ifndef POOL_H
  11. #define POOL_H
  12. #if defined (__cplusplus)
  13. extern "C" {
  14. #endif
  15. #include <stddef.h> /* size_t */
  16. #include "zstd_internal.h" /* ZSTD_customMem */
  17. typedef struct POOL_ctx_s POOL_ctx;
  18. /*! POOL_create() :
  19. * Create a thread pool with at most `numThreads` threads.
  20. * `numThreads` must be at least 1.
  21. * The maximum number of queued jobs before blocking is `queueSize`.
  22. * @return : POOL_ctx pointer on success, else NULL.
  23. */
  24. POOL_ctx *POOL_create(size_t numThreads, size_t queueSize);
  25. POOL_ctx *POOL_create_advanced(size_t numThreads, size_t queueSize, ZSTD_customMem customMem);
  26. /*! POOL_free() :
  27. Free a thread pool returned by POOL_create().
  28. */
  29. void POOL_free(POOL_ctx *ctx);
  30. /*! POOL_sizeof() :
  31. return memory usage of pool returned by POOL_create().
  32. */
  33. size_t POOL_sizeof(POOL_ctx *ctx);
  34. /*! POOL_function :
  35. The function type that can be added to a thread pool.
  36. */
  37. typedef void (*POOL_function)(void *);
  38. /*! POOL_add_function :
  39. The function type for a generic thread pool add function.
  40. */
  41. typedef void (*POOL_add_function)(void *, POOL_function, void *);
  42. /*! POOL_add() :
  43. Add the job `function(opaque)` to the thread pool.
  44. Possibly blocks until there is room in the queue.
  45. Note : The function may be executed asynchronously, so `opaque` must live until the function has been completed.
  46. */
  47. void POOL_add(void *ctx, POOL_function function, void *opaque);
  48. #if defined (__cplusplus)
  49. }
  50. #endif
  51. #endif