[vala/0.14] posix: Fix termios and fd_set related functions
- From: JÃrg Billeter <juergbi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/0.14] posix: Fix termios and fd_set related functions
- Date: Wed, 21 Dec 2011 15:35:06 +0000 (UTC)
commit 307bb00e274c89a2a26eb2dc5862ce686e58b20a
Author: Simon Busch <morphis gravedo de>
Date: Wed Nov 30 18:06:50 2011 +0100
posix: Fix termios and fd_set related functions
vapi/posix.vapi | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/vapi/posix.vapi b/vapi/posix.vapi
index 4846289..dc18512 100644
--- a/vapi/posix.vapi
+++ b/vapi/posix.vapi
@@ -1997,7 +1997,7 @@ namespace Posix {
}
[CCode (cheader_filename = "termios.h")]
- public int tcgetattr (int fd, termios termios_p);
+ public int tcgetattr (int fd, out termios termios_p);
[CCode (cheader_filename = "termios.h")]
public int tcsetattr (int fd, int optional_actions, termios termios_p);
[CCode (cheader_filename = "termios.h")]
@@ -2009,17 +2009,17 @@ namespace Posix {
[CCode (cheader_filename = "termios.h")]
public int tcflow (int fd, int action);
[CCode (cheader_filename = "termios.h")]
- public void cfmakeraw (termios termios_p);
+ public void cfmakeraw (ref termios termios_p);
[CCode (cheader_filename = "termios.h")]
public speed_t cfgetispeed (termios termios_p);
[CCode (cheader_filename = "termios.h")]
public speed_t cfgetospeed (termios termios_p);
[CCode (cheader_filename = "termios.h")]
- public int cfsetispeed (termios termios_p, speed_t speed);
+ public int cfsetispeed (ref termios termios_p, speed_t speed);
[CCode (cheader_filename = "termios.h")]
- public int cfsetospeed (termios termios_p, speed_t speed);
+ public int cfsetospeed (ref termios termios_p, speed_t speed);
[CCode (cheader_filename = "termios.h")]
- public int cfsetspeed (termios termios, speed_t speed);
+ public int cfsetspeed (ref termios termios, speed_t speed);
//c_iflag
[CCode (cheader_filename = "termios.h")]
@@ -2258,17 +2258,17 @@ namespace Posix {
}
[CCode (cheader_filename = "sys/select.h")]
- public int select (int nfds, fd_set? readfds, fd_set? writefds, fd_set? exceptfds, timeval timeout);
+ public int select (int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, timeval timeout);
[CCode (cheader_filename = "sys/select.h")]
- public void FD_CLR (int fd, fd_set @set);
+ public void FD_CLR (int fd, ref fd_set @set);
[CCode (cheader_filename = "sys/select.h")]
public int FD_ISSET (int fd, fd_set @set);
[CCode (cheader_filename = "sys/select.h")]
- public void FD_SET (int fd, fd_set @set);
+ public void FD_SET (int fd, ref fd_set @set);
[CCode (cheader_filename = "sys/select.h")]
- public void FD_ZERO (fd_set @set);
+ public void FD_ZERO (out fd_set @set);
[CCode (cheader_filename = "sys/select.h")]
- public int pselect (int nfds, fd_set? readfds, fd_set? writefds, fd_set? exceptfds, timespec timeout, sigset_t sigmask);
+ public int pselect (int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, timespec timeout, sigset_t sigmask);
// sys/mman.h - Posix mmap(), munmap(), mprotect()
[CCode (cheader_filename = "sys/mman.h")]
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]