udevadm-settle.c revision 8a7a0c19edd2d971d4aa9d635f7978af841e8278
/*
* Copyright (C) 2006-2009 Kay Sievers <kay@vrfy.org>
* Copyright (C) 2009 Canonical Ltd.
* Copyright (C) 2009 Scott James Remnant <scott@netsplit.com>
*
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <dirent.h>
#include <fcntl.h>
#include <syslog.h>
#include <getopt.h>
#include <signal.h>
#include <time.h>
#include "udev.h"
#include "udev-util.h"
#include "util.h"
static void help(void) {
printf("Usage: udevadm settle OPTIONS\n"
" -t,--timeout=<seconds> maximum time to wait for events\n"
" -E,--exit-if-exists=<file> stop waiting if file exists\n"
" -h,--help\n\n");
}
{
{}
};
unsigned int timeout = 120;
int c;
struct udev_queue *queue;
int rc = EXIT_FAILURE;
switch (c) {
case 't': {
int r;
if (r < 0) {
};
break;
}
case 'E':
break;
case 'h':
help();
return EXIT_SUCCESS;
case '?':
return EXIT_FAILURE;
default:
assert_not_reached("Unknown argument");
}
}
return EXIT_FAILURE;
}
/* guarantee that the udev daemon isn't pre-processing */
if (getuid() == 0) {
log_debug("no connection to daemon");
return EXIT_SUCCESS;
}
}
}
if (!queue) {
log_error("unable to get udev queue");
return EXIT_FAILURE;
}
log_debug("queue is empty, nothing to watch");
rc = EXIT_SUCCESS;
goto out;
}
for (;;) {
rc = EXIT_SUCCESS;
break;
}
/* exit if queue is empty */
if (udev_queue_get_queue_is_empty(queue)) {
rc = EXIT_SUCCESS;
break;
}
/* wake up when queue is empty */
}
out:
return rc;
}
const struct udevadm_cmd udevadm_settle = {
.name = "settle",
.cmd = adm_settle,
.help = "wait for pending udev events",
};