/** * @file * * @brief Default Poll Handler * * @ingroup LibIOFSHandler */ /* * Copyright (c) 2013, 2017 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 * 82178 Puchheim * Germany * * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include int rtems_filesystem_default_poll( rtems_libio_t *iop, int events ) { return POLLERR; } int rtems_termios_poll( rtems_libio_t *iop, int events ) RTEMS_WEAK_ALIAS( rtems_filesystem_default_poll );