Home
last modified time | relevance | path

Searched refs:maxfd (Results 1 – 1 of 1) sorted by relevance

/tools/power/acpi/tools/acpidbg/
Dacpidbg.c115 static int acpi_aml_set_fd(int fd, int maxfd, fd_set *set) in acpi_aml_set_fd() argument
117 if (fd > maxfd) in acpi_aml_set_fd()
118 maxfd = fd; in acpi_aml_set_fd()
120 return maxfd; in acpi_aml_set_fd()
271 int maxfd = 0; in acpi_aml_loop() local
290 maxfd = acpi_aml_set_fd(STDIN_FILENO, maxfd, &rfds); in acpi_aml_loop()
298 maxfd = acpi_aml_set_fd(fd, maxfd, &wfds); in acpi_aml_loop()
302 maxfd = acpi_aml_set_fd(fd, maxfd, &rfds); in acpi_aml_loop()
304 maxfd = acpi_aml_set_fd(STDOUT_FILENO, maxfd, &wfds); in acpi_aml_loop()
306 ret = select(maxfd+1, &rfds, &wfds, NULL, &tv); in acpi_aml_loop()
[all …]