Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program 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. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. *
  19. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. #include <string.h>
  25. #include <stdio.h>
  26. #include <getopt.h>
  27. #include <ipxe/command.h>
  28. #include <ipxe/parseopt.h>
  29. #include <usr/sync.h>
  30. /** @file
  31. *
  32. * "sync" command
  33. *
  34. */
  35. /** "sync" options */
  36. struct sync_options {
  37. /** Timeout */
  38. unsigned long timeout;
  39. };
  40. /** "sync" option list */
  41. static struct option_descriptor sync_opts[] = {
  42. OPTION_DESC ( "timeout", 't', required_argument,
  43. struct sync_options, timeout, parse_timeout ),
  44. };
  45. /** "sync" command descriptor */
  46. static struct command_descriptor sync_cmd =
  47. COMMAND_DESC ( struct sync_options, sync_opts, 0, 0, NULL );
  48. /**
  49. * "sync" command
  50. *
  51. * @v argc Argument count
  52. * @v argv Argument list
  53. * @ret rc Return status code
  54. */
  55. static int sync_exec ( int argc, char **argv ) {
  56. struct sync_options opts;
  57. int rc;
  58. /* Parse options */
  59. if ( ( rc = parse_options ( argc, argv, &sync_cmd, &opts ) ) != 0 )
  60. return rc;
  61. /* Wait for pending operations to complete */
  62. if ( ( rc = sync ( opts.timeout ) ) != 0 ) {
  63. printf ( "Operations did not complete: %s\n", strerror ( rc ) );
  64. return rc;
  65. }
  66. return 0;
  67. }
  68. /** Sync commands */
  69. struct command sync_command __command = {
  70. .name = "sync",
  71. .exec = sync_exec,
  72. };