parallel.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // -*- C++ -*-
  2. // Copyright (C) 2007-2015 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the terms
  6. // of the GNU General Public License as published by the Free Software
  7. // Foundation; either version 3, or (at your option) any later
  8. // version.
  9. // This library is distributed in the hope that it will be useful, but
  10. // WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. // General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. /** @file parallel/parallel.h
  21. * @brief End-user include file. Provides advanced settings and
  22. * tuning options.
  23. * This file is a GNU parallel extension to the Standard C++ Library.
  24. */
  25. // Written by Felix Putze and Johannes Singler.
  26. #ifndef _GLIBCXX_PARALLEL_PARALLEL_H
  27. #define _GLIBCXX_PARALLEL_PARALLEL_H 1
  28. #include <parallel/features.h>
  29. #include <parallel/compiletime_settings.h>
  30. #include <parallel/types.h>
  31. #include <parallel/tags.h>
  32. #include <parallel/settings.h>
  33. #endif /* _GLIBCXX_PARALLEL_PARALLEL_H */