2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2021-06-16 09:22:16 +02:00
|
|
|
* apps/examples/poll/poll_internal.h
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-16 03:31:55 +01:00
|
|
|
#ifndef __APPS_EXAMPLES_POLL_POLL_INTERNAL_H
|
|
|
|
#define __APPS_EXAMPLES_POLL_POLL_INTERNAL_H
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Compilation Switches
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-09-03 00:49:17 +02:00
|
|
|
* Pre-processor Definitions
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Here are all of the configuration settings that must be met to have TCP/IP
|
|
|
|
* poll/select support. This kind of looks like overkill.
|
|
|
|
*
|
2014-01-13 20:55:51 +01:00
|
|
|
* CONFIG_NET - Network support must be enabled
|
|
|
|
* CONFIG_NET_TCP - Only support on TCP (because read-ahead
|
|
|
|
* buffering s not yet support for UDP)
|
2011-03-20 19:18:19 +01:00
|
|
|
*/
|
|
|
|
|
2020-01-15 14:48:38 +01:00
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_TCP)
|
2011-03-20 19:18:19 +01:00
|
|
|
# define HAVE_NETPOLL 1
|
|
|
|
#else
|
|
|
|
# undef HAVE_NETPOLL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define FIFO_PATH1 "/dev/fifo0"
|
|
|
|
#define FIFO_PATH2 "/dev/fifo1"
|
|
|
|
|
|
|
|
#define POLL_LISTENER_DELAY 2000 /* 2 seconds */
|
|
|
|
#define SELECT_LISTENER_DELAY 4 /* 4 seconds */
|
|
|
|
#define NET_LISTENER_DELAY 3 /* 3 seconds */
|
|
|
|
#define WRITER_DELAY 6 /* 6 seconds */
|
|
|
|
|
|
|
|
#define LISTENER_PORT 5471
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2016-02-22 01:15:00 +01:00
|
|
|
* Public Data
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
extern void *poll_listener(pthread_addr_t pvarg);
|
|
|
|
extern void *select_listener(pthread_addr_t pvarg);
|
|
|
|
|
|
|
|
#ifdef HAVE_NETPOLL
|
|
|
|
extern void *net_listener(pthread_addr_t pvarg);
|
|
|
|
extern void *net_reader(pthread_addr_t pvarg);
|
|
|
|
#endif
|
2022-01-16 03:31:55 +01:00
|
|
|
#endif /* __APPS_EXAMPLES_POLL_POLL_INTERNAL_H */
|