Skip to content

Instantly share code, notes, and snippets.

@dusekdan
Created April 21, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dusekdan/52622e2322e276afce975e4f57f5b177 to your computer and use it in GitHub Desktop.
Save dusekdan/52622e2322e276afce975e4f57f5b177 to your computer and use it in GitHub Desktop.
/**
* Displays program's help screen
*/
void showHelp ()
{
printf ("Ticket algorithm synchronization demo.\n\n");
printf ("Usage: ./XXX N M\n\n");
printf ("Creates N threads and simulates M number of total passes through critical section protected by ticket algorithm.\n\n");
printf ("No other available options. Wrong parameters to the program shows this help.\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment