| // SPDX-License-Identifier: GPL-2.0-or-later |
| /* |
| * Copyright (c) 2016 Cyril Hrubis <[email protected]> |
| */ |
| |
| #include <stdio.h> |
| #include <unistd.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| static void print_help(void) |
| { |
| printf("Usage: tst_usleep interval[s|ms|us]\n\n"); |
| printf(" If no unit is specified the interval is in seconds\n"); |
| } |
| |
| static struct unit { |
| const char *unit; |
| long mul; |
| } units[] = { |
| {"", 1000000}, |
| {"s", 1000000}, |
| {"ms", 1000}, |
| {"us", 1}, |
| }; |
| |
| static unsigned int units_len = sizeof(units) / sizeof(*units); |
| |
| int main(int argc, char *argv[]) |
| { |
| int opt; |
| long interval, secs = 0, usecs = 0; |
| unsigned int i; |
| char *end; |
| |
| while ((opt = getopt(argc, argv, ":h")) != -1) { |
| switch (opt) { |
| case 'h': |
| print_help(); |
| return 0; |
| default: |
| print_help(); |
| return 1; |
| } |
| } |
| |
| if (optind >= argc) { |
| fprintf(stderr, "ERROR: Expected interval argument\n\n"); |
| print_help(); |
| return 1; |
| } |
| |
| interval = strtol(argv[optind], &end, 10); |
| |
| if (argv[optind] == end) { |
| fprintf(stderr, "ERROR: Invalid interval '%s'\n\n", |
| argv[optind]); |
| print_help(); |
| return 1; |
| } |
| |
| for (i = 0; i < units_len; i++) { |
| if (!strcmp(units[i].unit, end)) |
| break; |
| } |
| |
| if (i >= units_len) { |
| fprintf(stderr, "ERROR: Invalid interval unit '%s'\n\n", end); |
| print_help(); |
| return 1; |
| } |
| |
| if (units[i].mul == 1000000) |
| secs = interval; |
| |
| if (units[i].mul == 1000) { |
| secs = interval / 1000; |
| usecs = (interval % 1000) * 1000; |
| } |
| |
| if (units[i].mul == 1) { |
| secs = interval / 1000000; |
| usecs = interval % 1000000; |
| } |
| |
| if (secs) |
| sleep(secs); |
| |
| if (usecs) |
| usleep(usecs); |
| |
| return 0; |
| } |