Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Won't Fix
-
10.0.15
-
None
-
linux x86_64
Description
/home/dan/software_projects/mariadb-git/vio/viosocket.c: In function ‘vio_io_wait’:
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:923:17: error: storage size of ‘pfd’ isn’t known
|
struct pollfd pfd;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:954:18: error: ‘POLLIN’ undeclared (first use in this function)
|
pfd.events= MY_POLL_SET_IN;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:954:18: note: each undeclared identifier is reported only once for each function it appears in
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:954:27: error: ‘POLLPRI’ undeclared (first use in this function)
|
pfd.events= MY_POLL_SET_IN;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:955:36: error: ‘POLLERR’ undeclared (first use in this function)
|
revents= MY_POLL_SET_IN | MY_POLL_SET_ERR | POLLRDHUP;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:955:46: error: ‘POLLHUP’ undeclared (first use in this function)
|
revents= MY_POLL_SET_IN | MY_POLL_SET_ERR | POLLRDHUP;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:955:56: error: ‘POLLNVAL’ undeclared (first use in this function)
|
revents= MY_POLL_SET_IN | MY_POLL_SET_ERR | POLLRDHUP;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:959:18: error: ‘POLLOUT’ undeclared (first use in this function)
|
pfd.events= MY_POLL_SET_OUT;
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:969:3: warning: implicit declaration of function ‘poll’ [-Wimplicit-function-declaration]
|
switch ((ret= poll(&pfd, 1, timeout)))
|
^
|
/home/dan/software_projects/mariadb-git/vio/viosocket.c:923:17: warning: unused variable ‘pfd’ [-Wunused-variable]
|
struct pollfd pfd;
|
^
|
make[2]: *** [vio/CMakeFiles/vio.dir/viosocket.c.o] Error 1
|
make[2]: *** Waiting for unfinished jobs....
|