Sponsored Content
Top Forums UNIX for Advanced & Expert Users System hanged. help required. Post 302136863 by praveen_b744 on Thursday 20th of September 2007 05:17:55 AM
Old 09-20-2007
yes ,, i hav,,
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

URGENT Help required regarding the use of FORK system call

I desperately wanted one of the UNIX Gurus to help me resolve my problem asap(I have to deliver the code to the client by Monday 08-oct). I have a file with around 5 million records (50 lakhs). Now my original process was taking around 30 hours to read the complete file, process each and every... (4 Replies)
Discussion started by: kkumar1975
4 Replies

2. UNIX and Linux Applications

Binary Get Hanged

Hi, In our product we have use binary that fork the child process to make proxy the connection to device.But recently when we try to connect new configured device several times it get handed and binary stop making further new connection to device.it required to RESTART the services to make binary... (1 Reply)
Discussion started by: Anand Prakash
1 Replies

3. Programming

Help required with using system() call

Hi, I try to write a C program which lists the output of a paticular command with all the available options (a to z) for the command in the directory of execution. This program will generate the output if the option exists for the particular command else it will display some message saying... (9 Replies)
Discussion started by: ramkrix
9 Replies

4. Solaris

Required installation steps for perl 5.8.9 on Solaris 2.8 operating system

Hi Can any one suggest me the instalation guideline for perl 5.8.9 on UNIX/solaris 2.8 environment. Pooja (2 Replies)
Discussion started by: wadhwa.pooja
2 Replies

5. Solaris

The system (Solaris 8) has not found required fonts.

Hi guys and ladies! The application not found required fonts. I checked, the packages SUNWi5rf, SUNWi5of are installed. Then I checked availability the directories iso8859-5, iso8859_5 at /usr/openwin/lib/locale. I checked after that. % xlsfonts | grep "lucida-" The system showed only ... (0 Replies)
Discussion started by: wolfgang
0 Replies

6. UNIX for Dummies Questions & Answers

Creating a File system with required permissions for all DIR's created in

Hello All, I am application admin. I need to clear all the temporary files cleared by the applications. I need help/suggestion that is there any way to create a file system such that every Dir created in by any user will have 775 permissions. So, that i can simply clear the temporary file which... (6 Replies)
Discussion started by: firestar
6 Replies

7. UNIX for Advanced & Expert Users

System + Network Programming, your advice required???

Dear friends, Before putting my questions forward, I would like to put some data infront of you, hope you will help me at the end. This website Cray-Cyber - Welcome provides free access to many supercomputers and mainframe computers. When you login through ssh, they provide you with a screen,... (0 Replies)
Discussion started by: gabam
0 Replies

8. Programming

System + Network Programming, your advice required???

Dear friends, Before putting my questions forward, I would like to put some data infront of you, hope you will help me at the end. This website Cray-Cyber - Welcome provides free access to many supercomputers and mainframe computers. When you login through ssh, they provide you with a screen,... (5 Replies)
Discussion started by: gabam
5 Replies

9. Shell Programming and Scripting

System shell nologin script required

Hi Part of our security audit we found that following system account's had shells configured; sync halt shutdown I believe this can be achieved by following commands: chsh -s /sbin/nologin (user) usermod -s /sbin/nologin (user) However, I would like simple script to... (5 Replies)
Discussion started by: Gamma
5 Replies

10. Programming

Configure: error: X Window system libraries and header files are required

I am trying to compile thunar 1.8.4. It is giving me this error. configure: error: X Window system libraries and header files are required Ubuntu Mate 18.04 (2 Replies)
Discussion started by: drew77
2 Replies
FBB::OFdStreambuf(3bobcat)			       File Descriptor Output Stream Buffer				FBB::OFdStreambuf(3bobcat)

NAME
FBB::OFdStreambuf - Output stream buffer initialized by a file descriptor SYNOPSIS
#include <bobcat/ofdstreambuf> Linking option: -lbobcat DESCRIPTION
FBB::OFdStreambuf objects may be used as a std::streambuf of std::ostream objects to allow insertions into a file descriptor. File descriptors are not defined within the context of C++, but they can be used on operating systems that support the concept. Realize that using file descriptors introduces operating system dependencies. NAMESPACE
FBB All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB. INHERITS FROM
std::streambuf ENUMERATION
The public enumeration Mode defined in the class FBB::OFdStreamBuf has the following values: o CLOSE_FD, indicating that the file descriptor used by the object must be closed; o KEEP_FD (the default) indicating that the file descriptor used by the object must not be closed. CONSTRUCTORS
o OFdStreambuf(): This constructor initializes the streambuf, without associating it to a file descriptor, and without using buffering. The member open() can be used to associate the object later on with a file descriptor and optionally a buffer size. When the object is destroyed or if the mode-less overloaded version of the open member is called, the file descriptor will be closed. o OFdStreambuf(Mode mode): This constructor initializes the streambuf, without associating it to a file descriptor, and without using buffering. The member open() can be used to associate the object later on with a file descriptor and optionally a buffer size. When the object is destroyed or if the mode-less overloaded version of the open member is called, the Mode argument determines whether the file descriptor will be closed or will remain open. o OFdStreambuf(int fd, size_t n = 1): This constructor initializes the streambuf, associating it to file descriptor fd, and an optional unget buffer size (by default hav- ing size 1). When open is called subsequently, or if the object is destroyed the provided file descriptor will be closed. o OFdStreambuf(int fd, size_t n = 1): This constructor initializes the streambuf, associating it to file descriptor fd, and an optional unget buffer size (by default hav- ing size 1). When the object is destroyed or if the mode-less overloaded version of the open member is called, the file descriptor will be closed. o OFdStreambuf(int fd, Mode mode, size_t n = 1): This constructor initializes the streambuf, associating it to file descriptor fd, and an optional unget buffer size (by default hav- ing size 1). When the object is destroyed or if the mode-less overloaded version of the open member is called, the Mode argument determines whether the file descriptor will be closed or will remain open. There are no copy or move constructors. MEMBER FUNCTIONS
All members of std::streambuf are available, as FBB::OFdStreambuf inherits from this class. Some of the std::streambuf's member are over- ridden by FBB::OFdStreambuf, see below. o void close(): The file descriptor used by the OFdStreambuf is closed, irrespective of the Mode that was specified when the OFdStreambuf object was constructed. Following close the OFdStreambuf object can no longer be used until one of its open members has been called. o int fd() const: The file descriptor used by the OFdStreambuf object is returned. If the OFdStreambuf is not associated with a file descriptor -1 is returned. o void open(int xfd, size_t n = 1): The streambuf is (re)initialized, using file descriptor fd, and an optional unget buffer size (by default having size 1). When called repeatedly, the Mode specification used whem the object was constructed determines whether the file descriptor will be closed or will remain open. o void open(int xfd, Mode mode, size_t n = 1): The streambuf is (re)initialized, using file descriptor fd, a file descriptor closing parameter and an optional unget buffer size (by default having size 1). Depending on the Mode argument the object's currently used file descriptor will be closed or will remain open when the IFdStreambuf object is destroyed. The overloaded assignment operator is not available. PROTECTED MEMBER FUNCTION
The member listed in this section implements the tasks of the comparably named virtual function in the class's private interface. This sep- arates the redefinable interface from the user-interface. The class OFdStreambuf can, in accordance with Liskov's Substitution Principle, be used as a std:streambuf; but it also offers a facility for classes deriving from OFdStreambuf. This facility is listed here. o int pSync(): The contents of the OFdStreambuf's internal buffer flushed. EXAMPLE
To do FILES
bobcat/ofdstreambuf - defines the class interface SEE ALSO
bobcat(7), ifdstreambuf(3bobcat), ofdstream(3bobcat), std::streambuf BUGS
None reported DISTRIBUTION FILES
o bobcat_3.01.00-x.dsc: detached signature; o bobcat_3.01.00-x.tar.gz: source archive; o bobcat_3.01.00-x_i386.changes: change log; o libbobcat1_3.01.00-x_*.deb: debian package holding the libraries; o libbobcat1-dev_3.01.00-x_*.deb: debian package holding the libraries, headers and manual pages; o http://sourceforge.net/projects/bobcat: public archive location; BOBCAT
Bobcat is an acronym of `Brokken's Own Base Classes And Templates'. COPYRIGHT
This is free software, distributed under the terms of the GNU General Public License (GPL). AUTHOR
Frank B. Brokken (f.b.brokken@rug.nl). libbobcat1-dev_3.01.00-x.tar.gz 2005-2012 FBB::OFdStreambuf(3bobcat)
All times are GMT -4. The time now is 05:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy