tst-argp1.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper at redhat.com>, 2002.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <http://www.gnu.org/licenses/>.  */
  15. #include <argp.h>
  16. #define OPT_TO_THREAD 300
  17. #define OPT_TO_PROCESS 301
  18. #define OPT_SYNC_SIGNAL 302
  19. #define OPT_SYNC_JOIN 303
  20. #define OPT_TOPLEVEL 304
  21. static const struct argp_option test_options[] =
  22. {
  23. { NULL, 0, NULL, 0, "\
  24. This is a test for threads so we allow ther user to selection the number of \
  25. threads which are used at any one time. Independently the total number of \
  26. rounds can be selected. This is the total number of threads which will have \
  27. run when the process terminates:" },
  28. { "threads", 't', "NUMBER", 0, "Number of threads used at once" },
  29. { "starts", 's', "NUMBER", 0, "Total number of working threads" },
  30. { "toplevel", OPT_TOPLEVEL, "NUMBER", 0,
  31. "Number of toplevel threads which start the other threads; this \
  32. implies --sync-join" },
  33. { NULL, 0, NULL, 0, "\
  34. Each thread can do one of two things: sleep or do work. The latter is 100% \
  35. CPU bound. The work load is the probability a thread does work. All values \
  36. from zero to 100 (inclusive) are valid. How often each thread repeats this \
  37. can be determined by the number of rounds. The work cost determines how long \
  38. each work session (not sleeping) takes. If it is zero a thread would \
  39. effectively nothing. By setting the number of rounds to zero the thread \
  40. does no work at all and pure thread creation times can be measured." },
  41. { "workload", 'w', "PERCENT", 0, "Percentage of time spent working" },
  42. { "workcost", 'c', "NUMBER", 0,
  43. "Factor in the cost of each round of working" },
  44. { "rounds", 'r', "NUMBER", 0, "Number of rounds each thread runs" },
  45. { NULL, 0, NULL, 0, "\
  46. There are a number of different methods how thread creation can be \
  47. synchronized. Synchronization is necessary since the number of concurrently \
  48. running threads is limited." },
  49. { "sync-signal", OPT_SYNC_SIGNAL, NULL, 0,
  50. "Synchronize using a signal (default)" },
  51. { "sync-join", OPT_SYNC_JOIN, NULL, 0, "Synchronize using pthread_join" },
  52. { NULL, 0, NULL, 0, "\
  53. One parameter for each threads execution is the size of the stack. If this \
  54. parameter is not used the system's default stack size is used. If many \
  55. threads are used the stack size should be chosen quite small." },
  56. { "stacksize", 'S', "BYTES", 0, "Size of threads stack" },
  57. { "guardsize", 'g', "BYTES", 0,
  58. "Size of stack guard area; must fit into the stack" },
  59. { NULL, 0, NULL, 0, "Signal options:" },
  60. { "to-thread", OPT_TO_THREAD, NULL, 0, "Send signal to main thread" },
  61. { "to-process", OPT_TO_PROCESS, NULL, 0,
  62. "Send signal to process (default)" },
  63. { NULL, 0, NULL, 0, "Administrative options:" },
  64. { "progress", 'p', NULL, 0, "Show signs of progress" },
  65. { "timing", 'T', NULL, 0,
  66. "Measure time from startup to the last thread finishing" },
  67. { NULL, 0, NULL, 0, NULL }
  68. };
  69. /* Prototype for option handler. */
  70. static error_t parse_opt (int key, char *arg, struct argp_state *state);
  71. /* Data structure to communicate with argp functions. */
  72. static struct argp argp =
  73. {
  74. test_options, parse_opt
  75. };
  76. static int
  77. do_test (void)
  78. {
  79. int argc = 2;
  80. char *argv[3] = { (char *) "tst-argp1", (char *) "--help", NULL };
  81. int remaining;
  82. /* Parse and process arguments. */
  83. argp_parse (&argp, argc, argv, 0, &remaining, NULL);
  84. return 0;
  85. }
  86. /* Handle program arguments. */
  87. static error_t
  88. parse_opt (int key, char *arg, struct argp_state *state)
  89. {
  90. return ARGP_ERR_UNKNOWN;
  91. }
  92. #define TEST_FUNCTION do_test ()
  93. #include "../test-skeleton.c"