tst-argp1.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <argp.h>
  17. #define OPT_TO_THREAD 300
  18. #define OPT_TO_PROCESS 301
  19. #define OPT_SYNC_SIGNAL 302
  20. #define OPT_SYNC_JOIN 303
  21. #define OPT_TOPLEVEL 304
  22. static const struct argp_option test_options[] =
  23. {
  24. { NULL, 0, NULL, 0, "\
  25. This is a test for threads so we allow ther user to selection the number of \
  26. threads which are used at any one time. Independently the total number of \
  27. rounds can be selected. This is the total number of threads which will have \
  28. run when the process terminates:" },
  29. { "threads", 't', "NUMBER", 0, "Number of threads used at once" },
  30. { "starts", 's', "NUMBER", 0, "Total number of working threads" },
  31. { "toplevel", OPT_TOPLEVEL, "NUMBER", 0,
  32. "Number of toplevel threads which start the other threads; this \
  33. implies --sync-join" },
  34. { NULL, 0, NULL, 0, "\
  35. Each thread can do one of two things: sleep or do work. The latter is 100% \
  36. CPU bound. The work load is the probability a thread does work. All values \
  37. from zero to 100 (inclusive) are valid. How often each thread repeats this \
  38. can be determined by the number of rounds. The work cost determines how long \
  39. each work session (not sleeping) takes. If it is zero a thread would \
  40. effectively nothing. By setting the number of rounds to zero the thread \
  41. does no work at all and pure thread creation times can be measured." },
  42. { "workload", 'w', "PERCENT", 0, "Percentage of time spent working" },
  43. { "workcost", 'c', "NUMBER", 0,
  44. "Factor in the cost of each round of working" },
  45. { "rounds", 'r', "NUMBER", 0, "Number of rounds each thread runs" },
  46. { NULL, 0, NULL, 0, "\
  47. There are a number of different methods how thread creation can be \
  48. synchronized. Synchronization is necessary since the number of concurrently \
  49. running threads is limited." },
  50. { "sync-signal", OPT_SYNC_SIGNAL, NULL, 0,
  51. "Synchronize using a signal (default)" },
  52. { "sync-join", OPT_SYNC_JOIN, NULL, 0, "Synchronize using pthread_join" },
  53. { NULL, 0, NULL, 0, "\
  54. One parameter for each threads execution is the size of the stack. If this \
  55. parameter is not used the system's default stack size is used. If many \
  56. threads are used the stack size should be chosen quite small." },
  57. { "stacksize", 'S', "BYTES", 0, "Size of threads stack" },
  58. { "guardsize", 'g', "BYTES", 0,
  59. "Size of stack guard area; must fit into the stack" },
  60. { NULL, 0, NULL, 0, "Signal options:" },
  61. { "to-thread", OPT_TO_THREAD, NULL, 0, "Send signal to main thread" },
  62. { "to-process", OPT_TO_PROCESS, NULL, 0,
  63. "Send signal to process (default)" },
  64. { NULL, 0, NULL, 0, "Administrative options:" },
  65. { "progress", 'p', NULL, 0, "Show signs of progress" },
  66. { "timing", 'T', NULL, 0,
  67. "Measure time from startup to the last thread finishing" },
  68. { NULL, 0, NULL, 0, NULL }
  69. };
  70. /* Prototype for option handler. */
  71. static error_t parse_opt (int key, char *arg, struct argp_state *state);
  72. /* Data structure to communicate with argp functions. */
  73. static struct argp argp =
  74. {
  75. test_options, parse_opt
  76. };
  77. static int
  78. do_test (void)
  79. {
  80. int argc = 2;
  81. char *argv[3] = { (char *) "tst-argp1", (char *) "--help", NULL };
  82. int remaining;
  83. /* Parse and process arguments. */
  84. argp_parse (&argp, argc, argv, 0, &remaining, NULL);
  85. return 0;
  86. }
  87. /* Handle program arguments. */
  88. static error_t
  89. parse_opt (int key, char *arg, struct argp_state *state)
  90. {
  91. return ARGP_ERR_UNKNOWN;
  92. }
  93. #define TEST_FUNCTION do_test ()
  94. #include "../test-skeleton.c"