Effective Decision Support in Near-Real Time

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Effective Decision Support in Near-Real Time
# 1  
Old 07-25-2010
Effective Decision Support in Near-Real Time

INDUSTRY VIEW by Allen Avery, AutomationWorld.com With increased data throughput and higher data resolutions, historians have also become a foundation for plant asset management initiatives, thanks to new visibility and trending tools. Today’s historians also support techniques, such as complex event processing, which can analyze multiple streams of plant data in real time to identify and diagnose [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Programming

Real, effective and saved user id in C program

I figured it out by now. (0 Replies)
Discussion started by: Ralph
0 Replies

2. UNIX for Dummies Questions & Answers

Real and Effective IDs

Can anyone explain me in details of Real and Effective IDs (6 Replies)
Discussion started by: kkalyan
6 Replies
Login or Register to Ask a Question
door_cred(3C)						   Standard C Library Functions 					     door_cred(3C)

NAME
door_cred - return credential information associated with the client SYNOPSIS
cc -mt [ flag... ] file... [ library... ] #include <door.h> int door_cred(door_cred_t *info); DESCRIPTION
The door_cred() function returns credential information associated with the client (if any) of the current door invocation. The contents of the info argument include the following fields: uid_t dc_euid; /* Effective uid of client */ gid_t dc_egid; /* Effective gid of client */ uid_t dc_ruid; /* Real uid of client */ gid_t dc_rgid; /* Real gid of client */ pid_t dc_pid; /* pid of client */ The credential information associated with the client refers to the information from the immediate caller; not necessarily from the first thread in a chain of door calls. RETURN VALUES
Upon successful completion, door_cred() returns 0. Otherwise, door_cred() returns -1 and sets errno to indicate the error. ERRORS
The door_cred() function will fail if: EFAULT The address of the info argument is invalid. EINVAL There is no associated door client. USAGE
The door_cred() function is obsolete. Applications should use the door_ucred(3C) function in place of door_cred(). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Architecture |all | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Obsolete | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
door_call(3C), door_create(3C), door_ucred(3C), attributes(5) SunOS 5.11 22 Mar 2005 door_cred(3C)