Sponsored Content
Full Discussion: The Unix Crash of 2036
Special Forums News, Links, Events and Announcements The Unix Crash of 2036 Post 47316 by oombera on Saturday 7th of February 2004 12:36:08 AM
Old 02-07-2004
Wow, when I read this a couple hours ago, I thought it so absurd I didn't know how to respond to it. But being so knowledgeable about everything having to do with unix, I think you said it as no one else here could, Perderabo! Smilie

Closing the thread...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Disk Crash

We have a Unix system with two hard drives. When we tried to access it this morning it had frozen, and when we rebooted it couldn't find one of the hard drives, and had quite a few bad data blocks on the other. Of course we fear the worst: that the drive is completely gone, but were not sure how... (1 Reply)
Discussion started by: Kgatliffe
1 Replies

2. UNIX for Dummies Questions & Answers

server crash

Our SUn Solaris Server has crashed second time in 2 days, reason is not known , we are trying to determine what could have gone wrong, any ideas, the power supply seems to be fine, there is no response from keyboard,monitor etc and we had to do a hot boot yesterday.. Any suggestions what could be... (9 Replies)
Discussion started by: knarayan
9 Replies

3. HP-UX

HP-UX system crash help please!!!

Hi, First of all, thanks for your help. I have downloaded freeBSD to study unix I'm here again 'cause my HP-UX 10.x has "broken". It raise this error: ---------------------------------------------------- Diagnostic System warning: = 0x1f005000 is POWERFAILED The diagnostic logging... (1 Reply)
Discussion started by: efrenba
1 Replies

4. Solaris

Unix Box crash

Hi, I had witnessed my Enterprise machine 2500 series crashing last weekend. What is the command that I should use to bring the system to single user mode as the system is not responding to any of the commands :confused: ...Am still living as this is a test system.. :( System was running on... (2 Replies)
Discussion started by: sivam
2 Replies

5. HP-UX

crash dump

hi friends, i know that when there is a crash then that memory image is put into /var/adm/crash but if the system hangs up and if i have access to console of that machine then how can i take the crash dump manully. thanks (2 Replies)
Discussion started by: mxms755
2 Replies

6. Filesystems, Disks and Memory

HP-UX Disk crash?

Hi, First post. I am not to experienced in the Unix or HP-UX world but I'm learning. We have some problem with a HP rx4640 server. During boot it states the following: Checking for LVM volume groups and Activating (if any exist) Volume group "/dev/vg00" has been successfully changed. vgchange:... (7 Replies)
Discussion started by: hoff
7 Replies

7. Solaris

crash dump

hi , i have machine that is crashed how i can enable core dump file & how can i find it ? :confused: (4 Replies)
Discussion started by: lid-j-one
4 Replies

8. Solaris

crash dumps

I am supporting a server running Solaris 4.3.The server is not having ddicated system administrator and i am requred to do minor maintenance tasks.l From few days, The server is automatically crashing and i just reboot the server. I also do not see anything in /var/adm/messages that can give an... (1 Reply)
Discussion started by: asalman.qazi
1 Replies

9. SCO

Crash error on my unix server

Hi there. Well i have a really bad problem with my server: UnixWare Version 5 Release 7 The system crash :wall: and show the error: Panic: Kernel-mode address fault on user address 0x00000004 :eek: If anyone knows about the reason of this error please give me a help Sorry by my english.... (3 Replies)
Discussion started by: danilosevilla
3 Replies

10. SCO

Unixware Crash ...

Hi, I need help, one of our servers is down, and all data in that Server are critical: The Scenario: ------------- I have a computer with the next architecture: architecture=IA32 bus_types=PCI2.10,ISA,PnP1.0 hostname=xxx.xxx.xxx (the real name is hidden) hw_provider=Generic AT... (2 Replies)
Discussion started by: danilosevilla
2 Replies
mpsleep(9r)															       mpsleep(9r)

NAME
mpsleep - General: Blocks the current kernel thread SYNOPSIS
int mpsleep( caddr_t channel, long pri, char *wmesg, long timo, void *lockp, long flags ); ARGUMENTS
Specifies an address associated with the calling kernel thread to be blocked. Can specify the following values: When set, specifies that the sleep request is interruptible. That is, the kernel thread can take asynchronous signals. Not setting the PCATCH flag causes the process to sleep in an uninterruptible state. When set, specifies that the process can be asynchronously suspended while waiting. On the operating system you cannot use pri to set the scheduling priority of the calling process. Specifies a mnemonic for the type of wait. The ps command uses this mnemonic in its messages about the process. Specifies the maximum amount of time the kernel thread should block. The kernel thread blocks a maximum of timo divided by hz seconds. If you pass the value 0 (zero), mpsleep assumes there is no timeout. Specifies a pointer to a lock structure that you want to unlock before the process sleeps. If you do not want to release a lock, pass the value 0 (zero). Specifies the lock type of the lockp argument and how to handle the lock after blocking. You can specify one of the following valid lock types, defined in the <param.h> file: Calls mpsleep with a simple lock asserted. Calls mpsleep with a read-only lock asserted on entry. Calls mpsleep with a write lock asserted. In addition, you can specify one of the following ways to handle the lock after blocking: Forces mpsleep to relock the lock on fail- ure. Forces mpsleep not to relock after blocking. DESCRIPTION
The mpsleep routine blocks (puts to sleep) the current kernel thread until a wakeup is issued on the address you specify in the channel argument. This routine is the symmetric multiprocessor (SMP) sleep call. The kernel thread blocks a maximum of timo divided by hz seconds. The value0 (zero) means there is no timeout. If you pass the PCATCH flag to the pri argument, the sleep request is interruptible, and the kernel thread can take asynchronous signals. If you pass the PSUSP flag, the process can be asynchronously suspended while waiting. The mpsleep routine allows you to specify a pointer to a simple or complex lock structure that is associated with some resource. If the MS_LOCK_NO_RELOCK flag is set, it does not relock the lock after blocking. If the MS_LOCK_ON_ERROR flag is set (or no flag is set), mpsleep relocks the lock on failure. NOTES
This routine is not intended for general use. It is mostly used by sleep and tsleep and by knowledgeable callers. The mpsleep routine cannot be called from within an Interrupt Service routine (ISI) because it is illegal to block at interrupt context. RETURN VALUES
The mpsleep routine returns the following values: Successful completion. The sleep has been interrupted by a signal. The sleep has been interrupted by a signal on a restartable system call. The timeout has expired. SEE ALSO
Routines: assert_wait_mesg(9r), clear_wait(9r), thread_block(9r), thread_wakeup(9r), thread_wakeup_one(9r) mpsleep(9r)
All times are GMT -4. The time now is 12:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy