Displaying 7 results from an estimated 7 matches for "cfsetospeed".
Did you mean:
cfsetispeed
2001 Feb 04
4
next build
> *** openbsd-compat/bsd-nextstep.h.orig Sun Feb 4 00:16:16 2001
> --- openbsd-compat/bsd-nextstep.h Sun Feb 4 00:19:09 2001
> ***************
> *** 48,52 ****
> --- 48,56 ----
> speed_t cfgetispeed(const struct termios *t);
> int cfsetospeed(struct termios *t, int speed);
> int cfsetispeed(struct termios *t, int speed);
> +
> + /* LIMITS */
> + #define NGROUPS_MAX 16
> +
Hey, Steve.. since you put together the group access patch to OpenBSD. Do
you recomend a better place or a better value for NGROUPS_MAX? It...
2000 Jan 27
1
Long awaited round 1 of NeXT patches.
...((pid_t)s);
+}
+/*
+speed_t cfgetispeed(const struct termios *);
+speed_t cfgetospeed(const struct termios *);
+*/
+
+speed_t cfgetospeed(const struct termios *t)
+{
+
+ return (t->c_ospeed);
+}
+
+speed_t cfgetispeed(t)
+ const struct termios *t;
+{
+
+ return (t->c_ispeed);
+}
+
+/*int cfsetospeed(struct termios *, int);*/
+int
+cfsetospeed(struct termios *t,int speed)
+{
+
+ t->c_ospeed = speed;
+ return (0);
+}
+
+int
+cfsetispeed(t, speed)
+ struct termios *t;
+ speed_t speed;
+{
+
+ t->c_ispeed = speed;
+ return (0);
+}
+
+void
+cfsetspeed(t, speed)
+ struct termios *t;
+ speed_t s...
2000 Sep 28
1
[PATCH] Next cleanup part 4 or 5 by now.=)
...define wait(a) posix_wait(a)
/* MISC functions */
-int waitpid(int pid, int *stat_loc, int options);
-pid_t setsid(void);
+#define setsid() setpgrp(0, getpid())
+pid_t waitpid(int pid, int *stat_loc, int options);
/* TERMCAP */
int tcgetattr(int fd, struct termios *t);
@@ -54,5 +62,4 @@
int cfsetospeed(struct termios *t, int speed);
#endif /* HAVE_NEXT */
-
#endif /* _NEXT_POSIX_H */
Only in onext: ssh_prng_cmds
diff -ru openssh/sshd.c onext/sshd.c
--- openssh/sshd.c Sat Sep 23 01:15:57 2000
+++ onext/sshd.c Thu Sep 28 15:38:39 2000
@@ -1259,7 +1259,7 @@
if (len < 0 || len > sizeof(se...
2016 Apr 18
8
[Bug 2565] New: High baud rate gets sent, solaris closes pty
https://bugzilla.mindrot.org/show_bug.cgi?id=2565
Bug ID: 2565
Summary: High baud rate gets sent, solaris closes pty
Product: Portable OpenSSH
Version: 7.1p2
Hardware: Sparc
OS: Solaris
Status: NEW
Severity: minor
Priority: P5
Component: sshd
Assignee: unassigned-bugs at
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
...3.0 _Unwind_GetIP
0000000000000000 DF *UND* 0000000000000162 Base _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEmc
0000000000000000 DF *UND* 0000000000000082 GLIBC_2.2.5 pthread_mutex_unlock
0000000000000000 DF *UND* 0000000000000044 GLIBC_2.2.5 cfsetospeed
0000000000000000 DF *UND* 000000000000001d GLIBC_2.2.5 pthread_attr_init
0000000000000000 DF *UND* 000000000000011a GLIBC_2.2.5 strerror_r
0000000000000000 DF *UND* 000000000000004b Base del_curterm
0000000000000000 DF *UND* 0000000000000025 Base _ZNSt3__112bas...
2010 Oct 15
0
Wine release 1.3.5
...wine.inf: Add a few more common functions to be excluded from relay traces.
winex11: Mirror the client rectangle if necessary for update_window_zorder.
server: Valid rects are in parent coordinates.
rpcrt4/tests: Fix a test failure on XP SP3.
ntdll: Use the more portable cfsetospeed() function to set serial baud rate.
user32: Make sure the driver CreateCursorIcon() entry point is always called.
user32: Implemented GetIconInfoExA/W.
user32/tests: Tests for GetIconInfoExA/W.
user32: Convert the icon cache to a standard Wine list.
user32: Get rid of...
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB.
I'm using clang-3.9 and this configuration:
-DLLVM_TARGETS_TO_BUILD="X86"
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_C_COMPILER=/usr/bin/clang
-DCMAKE_CXX_COMPILER=/usr/bin/clang++