Sponsored Content
Full Discussion: SMF in Solaris 10
Operating Systems Solaris SMF in Solaris 10 Post 302401879 by incredible on Monday 8th of March 2010 06:23:22 AM
Old 03-08-2010
Any advise on this? Thanks in advance.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Standalone FTPD within SMF

Hello We are trying to run the WU_FTPD demon in standalone mode (-S argument) via an SMF service. Prior to SMF, this was achieved by simply commenting out the FTP line within the inetd.conf file. However, within SMF, I believe we need to carry out the following activities: i) Remove the FTP... (0 Replies)
Discussion started by: CowsUdders
0 Replies

2. Solaris

Boot problem with SMF svcs-Solaris 10 for x86

Hi All, I am newbie in solaris, please guide me. A week before i installed solaris10 on my x86 system, it was working fine i always used "init 5" to shutdown my system as per my collegue advice. But yesterday when i started my system it gave me following message ... (6 Replies)
Discussion started by: imrankhan.in
6 Replies

3. Solaris

smf repository not running

Hi All, I have a Solaris server which runs version 10 After installing the patch , i thought of doing a recongiuration reboot But it failed saying "smf repository not running" what could be the issue. Thanks J (4 Replies)
Discussion started by: jegaraman
4 Replies

4. Solaris

SMF service HELP

I would like to run command whenever system boot up, i.e "/opt/admin/script/closegen -c /opt/share/script/colsehg" How do I integrate above command in to SMF services. -sam (1 Reply)
Discussion started by: sam786
1 Replies

5. Solaris

Chkconfig & SMF

Hi I have been told to migrate linux init scripts to solaris 10. i am reading about the chkconfig & SMF ( I came to know that SMF is used in Sol 10 for service management ). The only thing i could not find out ( Because i dont have root access ) is how the links are created in rcX.d directory? ... (6 Replies)
Discussion started by: zedex
6 Replies

6. Solaris

Can solaris 10 SMF use remote dependencies

I have a customer who wants us to set up their applications to start using the solaris 10 SMF. One of their applications requires that 3 database instances are up and running, but those instances are on 3 separate servers. I can't think of any way that this can be done from what I have read on my... (1 Reply)
Discussion started by: rkruck
1 Replies

7. Solaris

Solaris 10 massive SMF log file

I found that there was a SMF log file: /var/svc/log/milestone-multi-user-server:default.log.0 which occupied around 19G bytes. Please help me how to purge this massive file. Can I just use cat /dev/null > /var/svc/log/milesto..... to this file without any interruption to a non-stop system?... (11 Replies)
Discussion started by: AlexLi
11 Replies

8. Solaris

SMF in Solaris wont write to stderr/stdout ?

Hi, I got a process (c written) that we usually run this way : EmsChkQu >> /EMS/log/EmsChkQu.log 2>&1 When trying to use it as a service I defined it this way : <?xml version='1.0'?> <!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'> <service_bundle... (6 Replies)
Discussion started by: zionassedo
6 Replies
QSignal(3qt)															      QSignal(3qt)

NAME
QSignal - Can be used to send signals for classes that don't inherit QObject SYNOPSIS
#include <qsignal.h> Inherits QObject. Public Members QSignal ( QObject * parent = 0, const char * name = 0 ) ~QSignal () bool connect ( const QObject * receiver, const char * member ) bool disconnect ( const QObject * receiver, const char * member = 0 ) void activate () bool isBlocked () const (obsolete) void block ( bool b ) (obsolete) void setParameter ( int value ) (obsolete) int parameter () const (obsolete) void setValue ( const QVariant & value ) QVariant value () const DESCRIPTION
The QSignal class can be used to send signals for classes that don't inherit QObject. If you want to send signals from a class that does not inherit QObject, you can create an internal QSignal object to emit the signal. You must also provide a function that connects the signal to an outside object slot. This is how we have implemented signals in the QMenuData class, which is not a QObject. In general, we recommend inheriting QObject instead. QObject provides much more functionality. You can set a single QVariant parameter for the signal with setValue(). Note that QObject is a private base class of QSignal, i.e. you cannot call any QObject member functions from a QSignal object. Example: #include <qsignal.h> class MyClass { public: MyClass(); ~MyClass(); void doSomething(); void connect( QObject *receiver, const char *member ); private: QSignal *sig; }; MyClass::MyClass() { sig = new QSignal; } MyClass::~MyClass() { delete sig; } void MyClass::doSomething() { // ... does something sig->activate(); // emits the signal } void MyClass::connect( QObject *receiver, const char *member ) { sig->connect( receiver, member ); } See also Input/Output and Networking and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QSignal::QSignal ( QObject * parent = 0, const char * name = 0 ) Constructs a signal object called name, with the parent object parent. These arguments are passed directly to QObject. QSignal::~QSignal () Destroys the signal. All connections are removed, as is the case with all QObjects. void QSignal::activate () Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal. void QSignal::block ( bool b ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Blocks the signal if b is TRUE, or unblocks the signal if b is FALSE. An activated signal disappears into hyperspace if it is blocked. See also isBlocked(), activate(), and QObject::blockSignals(). bool QSignal::connect ( const QObject * receiver, const char * member ) Connects the signal to member in object receiver. See also disconnect() and QObject::connect(). bool QSignal::disconnect ( const QObject * receiver, const char * member = 0 ) Disonnects the signal from member in object receiver. See also connect() and QObject::disconnect(). bool QSignal::isBlocked () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Returns TRUE if the signal is blocked, or FALSE if it is not blocked. The signal is not blocked by default. See also block() and QObject::signalsBlocked(). int QSignal::parameter () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setParameter ( int value ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setValue ( const QVariant & value ) Sets the signal's parameter to value QVariant QSignal::value () const Returns the signal's parameter SEE ALSO
http://doc.trolltech.com/qsignal.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qsignal.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QSignal(3qt)
All times are GMT -4. The time now is 10:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy