thread.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. #ifndef LIBHDFS_THREAD_H
  19. #define LIBHDFS_THREAD_H
  20. /*
  21. * Defines abstraction over platform-specific threads.
  22. */
  23. #include "platform.h"
  24. /** Pointer to function to run in thread. */
  25. typedef void (*threadProcedure)(void *);
  26. /** Structure containing a thread's ID, starting address and argument. */
  27. typedef struct {
  28. threadId id;
  29. threadProcedure start;
  30. void *arg;
  31. } thread;
  32. /**
  33. * Creates and immediately starts a new thread.
  34. *
  35. * @param t thread to create
  36. * @return 0 if successful, non-zero otherwise
  37. */
  38. int threadCreate(thread *t);
  39. /**
  40. * Joins to the given thread, blocking if necessary.
  41. *
  42. * @param t thread to join
  43. * @return 0 if successful, non-zero otherwise
  44. */
  45. int threadJoin(const thread *t);
  46. #endif