search for: termio

Displaying 20 results from an estimated 308 matches for "termio".

Did you mean: termios
2001 Nov 25
0
Errors compiling on Sun Solaris 2.7
Using Sun Forte C Compiling smbd/server.c "/usr/include/sys/termios.h", line 38: macro CTRL redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 76 "/usr/include/sys/termios.h", line 164: macro CEOT redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 87 "/usr/include/sys/termios.h", line 167...
2004 Jan 23
0
Samba 3.0.0 compile errors
...rce/ubiqx -I/home/jasperl/julian/local/src/samba-3.0.0/source/smbwrapper -I. -I/home/jasperl/julian/local/src/samba-3.0.0/source LIBS = -lresolv LDSHFLAGS = -G LDFLAGS = Compiling dynconfig.c In file included from /usr/local/lib/gcc-lib/sparc-sun-sunos4.1.3_U1/2.95.3/include/termio.h:7, from include/includes.h:256, from dynconfig.c:21: /usr/local/lib/gcc-lib/sparc-sun-sunos4.1.3_U1/2.95.3/include/sys/termios.h:116: warning: `NL0' redefined /usr/include/sys/ioctl.h:30: warning: this is the location of the previous definition /usr/local/lib...
2007 Dec 06
7
[PATCH] Fix ioemu compile
...er. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/tools/ioemu/hw/serial.c b/tools/ioemu/hw/serial.c --- a/tools/ioemu/hw/serial.c +++ b/tools/ioemu/hw/serial.c @@ -26,9 +26,15 @@ #include <sys/time.h> #include <time.h> #include <assert.h> -#include <asm/termios.h> //#define DEBUG_SERIAL + +#define TIOCM_DTR 0x002 +#define TIOCM_RTS 0x004 +#define TIOCM_CTS 0x020 +#define TIOCM_CAR 0x040 +#define TIOCM_RI 0x080 +#define TIOCM_DSR 0x100 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ _______________________________________________ Xen...
2009 May 15
5
[LLVMdev] [Cygwin] bug on SVN
...s.cpp's SVN that could have caused this. Anyone got a clue ? >It's my change, here: >http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090511/077380.html >Is struct winsize declared anywhere in the Cygwin headers? Doug, It is declared in <sys/termios.h> Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090515/4bf5a7c6/attachment.html>
2000 Jan 27
1
Long awaited round 1 of NeXT patches.
...UTMP if (bufsize > sizeof(wt.ut_host) + 1) @@ -120,7 +119,9 @@ buf[0] = 0; #endif /* HAVE_HOST_IN_UTMP */ } +#ifdef HAVE_TYPE_IN_UTMP } +#endif /* HAVE_TYPE_IN_UTMP */ if (lseek(fd1, (off_t)(0-2*sizeof(struct utmp)), SEEK_CUR) == -1) break; diff -ruN openssh-1.2.2/next-termios.c ossh-1.2.2n/next-termios.c --- openssh-1.2.2/next-termios.c Wed Dec 31 18:00:00 1969 +++ ossh-1.2.2n/next-termios.c Thu Jan 27 01:04:39 2000 @@ -0,0 +1,242 @@ +/*- + * Copyright (c) 1989, 1993 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use i...
2009 May 15
0
[LLVMdev] [Cygwin] bug on SVN
> It is declared in <sys/termios.h> ... which is included by <termios.h>, which might be a bit more standard? At least, only <termios.h> is listed here: http://www.opengroup.org/onlinepubs/007908775/headix.html Cheers, Jay.
2018 May 16
2
Compile error while building LLDB
...llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h:14: In file included from llvm/DebugInfo/PDB/PDBTypes.h:13: In file included from llvm/DebugInfo/CodeView/CodeView.h:509: llvm/DebugInfo/CodeView/CodeViewRegisters.def:78:13: error: expected identifier CV_REGISTER(CR0, 80) ^ /usr/include/sys/termios.h:184:14: note: expanded from macro 'CR0' #define CR0 0x00000000 ^ In file included from llvm/lldb-6.0.0.src/source/API/SystemInitializerFull.cpp:89: In file included from llvm/lldb-6.0.0.src/source/./Plugins/SymbolFile/PDB/SymbolFilePDB.h:17: In file in...
2018 May 16
2
Compile error while building LLDB
...cluded from llvm/DebugInfo/PDB/PDBTypes.h:13: > > In file included from llvm/DebugInfo/CodeView/CodeView.h:509: > > llvm/DebugInfo/CodeView/CodeViewRegisters.def:78:13: error: expected > > identifier > > CV_REGISTER(CR0, 80) > > ^ > > /usr/include/sys/termios.h:184:14: note: expanded from macro 'CR0' > > #define CR0 0x00000000 > > ^ > > In file included from > > llvm/lldb-6.0.0.src/source/API/SystemInitializerFull.cpp:89: > > In file included from > > llvm/lldb-6.0.0.src/so...
2018 May 26
0
Compile error while building LLDB
...headers related to a duplicate symbol. While this doesn't entirely surprise me after seeing the error, I'm also not sure why this problem is only just happening now. Ultimately what's happening is we have this enumeration: enum class RegisterId : uint16_t { ... CR3, ... }; But your termios.h file also has a #define for CR3. I guess one possible fix would be to rename these to something like CVRegCR3. On Wed, May 16, 2018 at 11:54 AM Jonas Devlieghere via llvm-dev < llvm-dev at lists.llvm.org> wrote: > I'm still trying to figure this out. On one of my machines it went...
2018 May 16
0
Compile error while building LLDB
...umerator.h:14: > In file included from llvm/DebugInfo/PDB/PDBTypes.h:13: > In file included from llvm/DebugInfo/CodeView/CodeView.h:509: > llvm/DebugInfo/CodeView/CodeViewRegisters.def:78:13: error: expected > identifier > CV_REGISTER(CR0, 80) > ^ > /usr/include/sys/termios.h:184:14: note: expanded from macro 'CR0' > #define CR0 0x00000000 > ^ > In file included from > llvm/lldb-6.0.0.src/source/API/SystemInitializerFull.cpp:89: > In file included from > llvm/lldb-6.0.0.src/source/./Plugins/SymbolFile/PDB/...
1999 Jan 18
2
Samba-2.0.0 : configure problem with SunOs 4.1.x
Hi all, Running configure (several times) on a SunOs 4.1.x machine ends with the following error message: .. ... creating include/stamp-h creating Makefile creating include/config.h ./config.status: 6853 Bus error What can I do ? Please help ! Best Regards Peter Krauspe ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Peter Krauspe .---. .-----------
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...
2019 Jan 25
0
[klibc:update-dash] input: Remove HETIO
...ash/hetio.h | 22 --- usr/dash/input.c | 9 -- usr/dash/main.c | 8 -- usr/dash/trap.c | 7 - 5 files changed, 443 deletions(-) diff --git a/usr/dash/hetio.c b/usr/dash/hetio.c deleted file mode 100644 index f7d175f3..00000000 --- a/usr/dash/hetio.c +++ /dev/null @@ -1,397 +0,0 @@ -/* - * Termios command line History and Editting for NetBSD sh (ash) - * Copyright (c) 1999 - * Main code: Adam Rogoyski <rogoyski at cs.utexas.edu> - * Etc: Dave Cinege <dcinege at psychosis.com> - * - * You may use this code as you wish, so long as the original author(s) - * are attributed in any...
2020 Mar 28
0
[klibc:update-dash] dash: input: Remove HETIO
...ash/hetio.h | 22 --- usr/dash/input.c | 9 -- usr/dash/main.c | 8 -- usr/dash/trap.c | 7 - 5 files changed, 443 deletions(-) diff --git a/usr/dash/hetio.c b/usr/dash/hetio.c deleted file mode 100644 index f7d175f3..00000000 --- a/usr/dash/hetio.c +++ /dev/null @@ -1,397 +0,0 @@ -/* - * Termios command line History and Editting for NetBSD sh (ash) - * Copyright (c) 1999 - * Main code: Adam Rogoyski <rogoyski at cs.utexas.edu> - * Etc: Dave Cinege <dcinege at psychosis.com> - * - * You may use this code as you wish, so long as the original author(s) - * are attributed in any...
2009 May 18
0
[LLVMdev] [Cygwin] bug on SVN
...gt; Anyone got a clue ? >> > > >It's my change, here: > > >http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of- > Mon-20090511/077380.html > > >Is struct winsize declared anywhere in the Cygwin headers? > > Doug, > > It is declared in <sys/termios.h> > Okay, we're now checking for <termios.h> in addition to <sys/ioctl.h>. Hopefully, things are working again on Cygwin with r72018 (but I can't test it here). - Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists...
2006 Jun 20
2
[PATCH] openssh pseudo-terminal bug
hello short description: ssh client sends a wrong all-zero terminal info when requesting forced pseudo-terminal allocation while stdin is not a terminal. sshd then sets the terminals ospeed to 0 because it receives this information from the client. on solaris this means that the pseudo-terminal is closed and output of any remote command is dropped. longer description: what we're doing is
2008 Jan 16
8
PATCH [xenconsoled]: makes pty slave raw early
Hi, on my system (Linux 2.6.18.8 - ia64), if a domain write on the xencons before xenconsole is initialized the domain gets back what it wrote. This patch fixes this issue by making raw the pty slave very early. (I suppose it doesn''t happen with linux as a guest because it takes a little bit of time before writing to xencons). Tristan. _______________________________________________
2014 Jun 11
2
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
...er at tarent.de> --- usr/klibc/isatty.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr/klibc/isatty.c b/usr/klibc/isatty.c index c2e4a4e..2359479 100644 --- a/usr/klibc/isatty.c +++ b/usr/klibc/isatty.c @@ -8,8 +8,9 @@ int isatty(int fd) { - int dummy; + struct termios dummy; /* All ttys support TIOCGPGRP */ - return !ioctl(fd, TIOCGPGRP, &dummy); + /* except /dev/console which needs TCGETS */ + return !ioctl(fd, TCGETS, &dummy); } -- 2.0.0
2008 Mar 26
3
[PATCH][TOOLS] pygrub: cleanup and support for NetBSD
Hi Keir, Attached patch gets rid of the global attr variable and adds support for NetBSD. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> -- AMD Saxony, Dresden, Germany Operating System Research Center Legal Information: AMD Saxony Limited Liability Company & Co. KG Sitz (Geschäftsanschrift): Wilschdorfer Landstr. 101, 01109 Dresden, Deutschland Registergericht
2019 Aug 18
1
1.3.3: powerpc portability problems
...y" Weisgerber naddy at mips.inka.de -------------- next part -------------- Index: configure.ac --- configure.ac.orig +++ configure.ac @@ -69,7 +69,7 @@ AC_C_INLINE AC_C_VARARRAYS AC_C_TYPEOF -AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h]) +AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h sys/auxv.h]) XIPH_C_BSWAP32 XIPH_C_BSWAP16 @@ -104,6 +104,8 @@ AC_CHECK_TYPES(socklen_t, [], []) dnl check for getopt in standard library dnl AC_CHECK_FUNCS(getopt_...