poll.c 247 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/export.h>
  3. #include <linux/poll.h>
  4. __rust_helper void rust_helper_poll_wait(struct file *filp,
  5. wait_queue_head_t *wait_address,
  6. poll_table *p)
  7. {
  8. poll_wait(filp, wait_address, p);
  9. }