Sponsored Content
Full Discussion: Real time problems
Operating Systems Solaris Real time problems Post 302306553 by jlliagre on Monday 13th of April 2009 06:11:24 AM
Old 04-13-2009
I guess you mean real life. Real-time has a specific meaning in the Operating System context.
As for the issues we face, they are very diverse ...
 

7 More Discussions You Might Find Interesting

1. AIX

Problems to show the real used space

Hello everybody! I have the next problem, the oraganization has a p570 with a DS4300 on a SAN, running Oracle. The file systems of TEMP and UNDO were full, I eliminated some large files, (about 4 GB), but everytime that I realize this operation, it takes about 20 or 30 minutes to show the new... (1 Reply)
Discussion started by: GEIER
1 Replies

2. UNIX for Advanced & Expert Users

EPOCH to real time?

hi all :confused: i am wondering if there is a way to convert from EPOCH time to the standard tim, may be using a script or some thing else??????? thanks............................ (5 Replies)
Discussion started by: TheEngineer
5 Replies

3. UNIX for Dummies Questions & Answers

capturing real time

Newbie question: I wrote korn shell script that lets me connect to a cisco switch thru telnet from sun server. I'm wodering if or what command i would use to capture info that is being sent to standard output when the script is running. Putting part of my script below and results. #!/bin/ksh... (2 Replies)
Discussion started by: wisher115
2 Replies

4. Programming

problem with real-time

hello every1, i'm very hope so anyone here have experience with lib rt like aio linux based. In first I've a problem with receiving data from aio_buf, i.e. I have received it, but if the next data size less then pervious I've got a noise from a socket. I've tried to fix it by different ways, but... (0 Replies)
Discussion started by: quant
0 Replies

5. Shell Programming and Scripting

Shell script to convert epoch time to real time

Dear experts, I have an epoch time input file such as : - 1302451209564 1302483698948 1302485231072 1302490805383 1302519244700 1302492787481 1302505299145 1302506557022 1302532112140 1302501033105 1302511536485 1302512669550 I need the epoch time above to be converted into real... (4 Replies)
Discussion started by: aismann
4 Replies

6. UNIX for Dummies Questions & Answers

Real time processing

Hi Not sure if this can be achieved by unix , but still would like to know if there is any way by which I can do the below given logic cat sam1 > out1 cat sam2 > out2 when either one of this finished the the next file shd be written in that file, meaning cat sam3 >> out1/out2... (2 Replies)
Discussion started by: Sri3001
2 Replies

7. Shell Programming and Scripting

Converting real time to epoch time

# date +%s -d "Mon Feb 11 02:26:04" 1360567564 # perl -e 'print scalar localtime(1360567564), "\n";' Mon Feb 11 02:26:04 2013 the epoch conversion is working fine. but one of my application needs 13 digit epoch time as input 1359453135154 rather than 10 digit epoch time 1360567564... (3 Replies)
Discussion started by: vivek d r
3 Replies
GETUID(P)						     POSIX Programmer's Manual							 GETUID(P)

NAME
getuid - get a real user ID SYNOPSIS
#include <unistd.h> uid_t getuid(void); DESCRIPTION
The getuid() function shall return the real user ID of the calling process. RETURN VALUE
The getuid() function shall always be successful and no return value is reserved to indicate the error. ERRORS
No errors are defined. The following sections are informative. EXAMPLES
Setting the Effective User ID to the Real User ID The following example sets the effective user ID and the real user ID of the current process to the real user ID of the caller. #include <unistd.h> #include <sys/types.h> ... setreuid(getuid(), getuid()); ... APPLICATION USAGE
None. RATIONALE
None. FUTURE DIRECTIONS
None. SEE ALSO
getegid() , geteuid() , getgid() , setegid() , seteuid() , setgid() , setregid() , setreuid() , setuid() , the Base Definitions volume of IEEE Std 1003.1-2001, <sys/types.h>, <unistd.h> COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technol- ogy -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE
/The Open Group 2003 GETUID(P)
All times are GMT -4. The time now is 09:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy