关于串口软中断,求指教

我想编写一个串口段实现接收数据, 利用网上的例程,我改了一下,对于配置端口作默认处理,其他代码如下:
#include <termios.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>

#define BAUDRATE B38400
#define MODEMDEVICE “/dev/ser1”
#define _POSIX_SOURCE 1 /* POSIX compliant source */
#define FALSE 0
#define TRUE 1

volatile int STOP=FALSE;

void signal_handler_IO (int status); /* definition of signal handler /
int wait_flag=TRUE; /
TRUE while no signal received */

main()
{
int fd,c, res;
struct sigaction saio; /* definition of signal action */
char buf[255];

/* open the device to be non-blocking (read will return immediatly) */
fd = open(MODEMDEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
if (fd <0) {perror(MODEMDEVICE); exit(-1); }

/* install the signal handler before making the device asynchronous */
saio.sa_handler = signal_handler_IO;
sigemptyset(&saio. sa_mask);
saio.sa_flags = 0;
// saio.sa_restorer = NULL;
sigaction(SIGIO,&saio,NULL);

/* allow the process to receive SIGIO /
// fcntl(fd, F_SETOWN, getpid());
if (fcntl(fd, F_SETOWN, getpid())<0)perror(“a”);
/
Make the file descriptor asynchronous (the manual page says only
O_APPEND and O_NONBLOCK, will work with F_SETFL…) */
if(fcntl(fd, F_SETFL, O_ASYNC)<0)perror(“b”);

/* loop while waiting for input. normally we would do something
useful here /
while (STOP==FALSE) {
printf(".\n");usleep(100000);
/
after receiving SIGIO, wait_flag = FALSE, input is available
and can be read /
if (wait_flag==FALSE) {
res = read(fd,buf,255);
buf[res]=0;
printf(":%s:%d\n", buf, res);
if (res==1) STOP=TRUE; /
stop loop if only a CR was input /
wait_flag = TRUE; /
wait for new input /
}
}
/
restore old port settings */
// tcsetattr(fd,TCSANOW,&oldtio);
}

/***************************************************************************

  • signal handler. sets wait_flag to FALSE, to indicate above loop that *
  • characters have been received. *
    ***************************************************************************/

void signal_handler_IO (int status)
{
printf(“received SIGIO signal.\n”);
wait_flag = FALSE;
}

可是实现不了接收到数据有产生中断的效果。原因是fcntl(fd, F_SETOWN, getpid()) Function not implemented,这个要怎么办。。求帮忙!