Sponsored Content
Operating Systems BSD Move from Solaris: ARM 64 Bit Post 302929207 by fpmurphy on Thursday 18th of December 2014 08:24:02 PM
Old 12-18-2014
AFAIR, FreeBSD does not have zones. It has BSD Jails which can be used to provide similar functionality excepting for resource limits.
 

8 More Discussions You Might Find Interesting

1. Solaris

64 bit solaris 9

How can I tell if im running a 64 bit version of solaris? (1 Reply)
Discussion started by: csaunders
1 Replies

2. Solaris

32 / 64 bit OS in Solaris

Dear All, This is Viswanadhan, new to Sun Solaris domain. In Sun Solaris ( SPARC ) has 32 bit and 64 bit OS. While insallation of OS there no specific option for 32 / 64 bit OS .On which basis OS installs for 32 / 64 bit OS ? Regards, Viswanadhan. (1 Reply)
Discussion started by: viswanadhan
1 Replies

3. Solaris

Which version and Bit of Solaris OS

Hello 1) How can I find what bit of OS I am running on? 16 bit, 64 bit? 2) What is the difference in having different bits? 3) Below is the output of /etc/release/ what are all these components meaning? $ more /etc/release Solaris 10 11/06 s10x_u3wos_10 X86 $ Thank... (7 Replies)
Discussion started by: panchpan
7 Replies

4. Solaris

Solaris 64-bit to 32-bit

I had previous implemented the following in my menu.lst to be able to get to 32-bit operations. # title Solaris 10 32-bit root (hd0,0,a) kernel /platform/i86pc/multiboot kernel/unix module /platform/i86pc/boot_archive </code> Now, it is not working as I get the following error : ... (0 Replies)
Discussion started by: praveenr
0 Replies

5. Solaris

Porting C++ 32-bit code on 64-bit Solaris

Hi, I am trying to convert 32-bit code to 64-bit. I have defined function int main() { int* l; size_t len1; fun(len1); return 0; } void fun(int* ptr) { cout<<"\nsizeof(ptr)"<<sizeof(ptr); } However while compiling getting error as : Error: Formal argument ptr... (2 Replies)
Discussion started by: amit_27
2 Replies

6. Solaris

Solaris os 32 bit or 64 bit

:confused: how to find out wether my os is 32 bit or 64 bit. I am using Solaris 5.6. also i want to know the difference between 32 bit and 64bit os. any help will be much appreciated as i am in urgent need of this information (6 Replies)
Discussion started by: asalman.qazi
6 Replies

7. Solaris

VCS for Solaris 32 bit OS

Hi Admins, I know that VCS supports Solaris x86-64bit only...and I need vcs for Solaris 32 bit-x86..running on vmware workstation.. I need to run vcs on vmware workstation...And my laptop support only 32bit... Please suggest.. Thanks.. (1 Reply)
Discussion started by: snchaudhari2
1 Replies

8. Solaris

Solaris sticky bit

i got this archive file on sticky bit mode. somehow i could not remove the sticky bit. i could not even copy or view the view using file user account or root account. -rw-r--r-T 1 mark support 875166720 Mar 23 2005 file_mig.dat anybody encounter this type of problem? i have done running... (11 Replies)
Discussion started by: uwagon
11 Replies
CURSES_INCH(3)						   BSD Library Functions Manual 					    CURSES_INCH(3)

NAME
curses_inch, inch, winch, inchnstr, mvinchnstr, winchnstr, mvwinchnstr, inchstr, mvinchstr, winchstr, mvwinchstr, innstr, winnstr, mvinnstr, mvwinnstr, instr, winstr mvinstr, mvwinstr -- curses read screen contents routines LIBRARY
Curses Library (libcurses, -lcurses) SYNOPSIS
#include <curses.h> chtype inch(void); chtype winch(WINDOW *win); int inchnstr(chtype *chars, int n); int mvinchnstr(int y, int x, chtype *chstr, int n); int winchnstr(WINDOW *win, chtype *chars, int n); int mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n); int inchstr(chtype *chars); int mvinchstr(int y, int x, chtype *chstr); int winchstr(WINDOW *win, chtype *chars); int mvwinchstr WINDOW *win int y int x chtype *chstr int innstr(char *str, int n); int winnstr(WINDOW *win, char *str, int n); int mvinnstr(int y, int x, char *str, int n); int mvwinnstr(WINDOW *win, int y, int x, char *str, int n); int instr(char *str); int winstr(WINDOW *win, char *str); int mvinstr(int y, int x, char *str); int mvwinstr(WINDOW *win, int y, int x, char *str); DESCRIPTION
These functions read the contents of stdscr or of the specified window. The inch() function returns the character that is displayed on stdscr at the current cursor position. The winch() function is the same as the inch() function, excepting that the character is read from window specified by win. The inchnstr() function fills an array of chtype with characters read from stdscr, the characters are read starting from the current cursor position and continuing until either n - 1 characters are read or the right hand side of the screen is reached. The resulting character array will be NULL terminated. The winchnstr() function is the same as inchnstr() excepting that the characters are read from the window specified by win. The inchstr() and winchstr() functions are the same as the inchnstr() and winchnstr() functions, respectively, excepting that they do not limit the number of characters read. The characters returned are those from the current starting position to the right hand side of the screen. The use of inchstr() and winchstr() is not recommended as the character buffer can be overflowed. The innstr() function is similar to the inchstr() function, excepting that the array of characters returned is stripped of all the curses attributes making it a plain character string. The mvinchstr(), mvinchnstr(), mvwinchstr(), and mvwinchnstr() functions are the same as the inchstr(), inchnstr(), winchstr(), and winchstr() functions, respectively, except that wmove() is called to move the cursor to the position specified by y, x before the output is printed on the window. Likewise, the mvinstr(), mvinnstr(), mvwinstr(), and mvwinnstr() functions are the same as the instr(), innstr(), winstr(), and winstr() functions, respectively, except that wmove() is called to move the cursor to the position specified by y, x before the output is printed on the window. The winnstr() function is the same as the innstr() function, excepting that characters are read from the window specified by win. The instr() and winstr() functions are the same as the innstr() and winnstr() functions, respectively, excepting that there are no limits placed on the size of the returned string, which may cause buffer overflows. For this reason, the use of instr() and winstr() is not recom- mended. RETURN VALUES
If the calls innstr(), mvinnstr(), mvwinnstr(), and winnstr() succeed then they will return the number of characters actually read. Func- tions returning pointers will return NULL if an error is detected. The functions that return an int will return one of the following values: OK The function completed successfully. ERR An error occurred in the function. SEE ALSO
curses_addch(3), curses_addstr(3), curses_attributes(3), curses_insertch(3) STANDARDS
The NetBSD Curses library complies with the X/Open Curses specification, part of the Single Unix Specification. NOTES
The inchnstr() and innstr() function read at most n - 1 characters from the screen so as to leave room for NULL termination. The X/Open specification is unclear as to whether or not this is the correct behaviour. HISTORY
The Curses package appeared in 4.0BSD. BSD
August 7, 2011 BSD
All times are GMT -4. The time now is 09:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy