Sponsored Content
Full Discussion: Rebuild disk or drive?
Operating Systems HP-UX Rebuild disk or drive? Post 90603 by Perderabo on Thursday 24th of November 2005 08:46:01 AM
Old 11-24-2005
Please make sure that you have read our rules. And note:
(4) Do not 'bump up' questions if they are not answered promptly. No duplicate or cross-posting and do not report a post where your goal is to get an answer more quickly.

I will close this duplicate thread.
 

9 More Discussions You Might Find Interesting

1. HP-UX

HP-UX undetected disk drive

I have installed a new SCSI drive into an HP6000-SE SCSI tower conencted to an old HP9000. This device cannot be detected by SAM. HOWEVER, when doing an ioscan -f I get: ====================================================================== bc 0 root CLAIMED BUS_NEXUS bc 1 56 bc CLAIMED... (3 Replies)
Discussion started by: sam_pointer
3 Replies

2. UNIX for Dummies Questions & Answers

HP-UX undetected disk drive

I have installed a new SCSI drive into an HP6000-SE SCSI tower conencted to an old HP9000. This device cannot be detected by SAM. HOWEVER, when doing an ioscan -f I get: ====================================================================== bc 0 ... (2 Replies)
Discussion started by: sam_pointer
2 Replies

3. Filesystems, Disks and Memory

Disk drive and Ultra 10

I need more space on my Ultra 10, and was thinking of a pair of 60 or 80 GB 7200 rpm ATA/100 drives mirrored with DiskSuite. Will afterarket IDE drives work in the Sun box? Are there any issues? (1 Reply)
Discussion started by: 98_1LE
1 Replies

4. Filesystems, Disks and Memory

Disk Drive for Irix

I am looking for a Disk Drive for SGI Octane with Irix 6.4 . I was just hoping if someone out there can give me the vendor and part number ... Need a 9GB hopefully. (1 Reply)
Discussion started by: DPAI
1 Replies

5. Solaris

How to rebuild root disk - 280R

Hi!, We have a SUN Server 280R (2 *36GB) disks. The disk with the root filesystem needs to be replaced! Lots of H/W error messages! We have the new disk - but how do we go about re-building it! Is there any document or location where I can get detailed re-build instructions? Any help... (7 Replies)
Discussion started by: sdharmap
7 Replies

6. Filesystems, Disks and Memory

Pointing one hard drive name to another disk

Pointing one hard drive name to another disk -------------------------------------------------------------------------------- I have 2 disk drives - s2d9 & s2d11 on a solaris Unix system It was mapped so that anything that tried to call s2d9 would be pointed to s2d11 since s2d9 was bad.... (2 Replies)
Discussion started by: andy57s
2 Replies

7. HP-UX

How to rebuild a new disk

Hi.... I newbee to this and wanted help on hpux11 system. Disk is being replaced and need to rebuild and what r the commands I need to perform after the disk is swapped :confused: Thanks! (1 Reply)
Discussion started by: catwomen
1 Replies

8. UNIX for Dummies Questions & Answers

Unix machine as disk drive

Hello, This is my first post :) I wondered if it would be possible to connect a unix machine via USB as a disk drive in the same way as Android devices connects to the computers. The idea is to connect my debian machine to the television, that is compatible with USB pendrives. Then, the... (3 Replies)
Discussion started by: Strife
3 Replies

9. UNIX for Advanced & Expert Users

The disk drive for /tmp is not ready yet or not present && the disk drive for /boot is not ready yet

Hi Team when I boot the server I get this 2 errors : the disk drive for /tmp is not ready yet or not present the disk drive for /boot is not ready yet or not present and its stay like that , I m using Ubuntu 12.04 please if someone have any idea how to fix that problem . (1 Reply)
Discussion started by: SULTAN01
1 Replies
pthread_detach(3C)					   Standard C Library Functions 					pthread_detach(3C)

NAME
pthread_detach - detach a thread SYNOPSIS
cc -mt [ flag... ] file... -lpthread [ library... ] #include <pthread.h> int pthread_detach(pthread_t thread); DESCRIPTION
The pthread_detach() function is used to indicate to the implementation that storage for the thread thread can be reclaimed when that thread terminates. In other words, pthread_detach() dynamically resets the detachstate attribute of the thread to PTHREAD_CRE- ATE_DETACHED. After a successful call to this function, it would not be necessary to reclaim the thread using pthread_join(). See pthread_join(3C). If thread has not terminated, pthread_detach() will not cause it to terminate. The effect of multiple pthread_detach() calls on the same target thread is unspecified. RETURN VALUES
If successful, pthread_detach() returns 0. Otherwise, an error number is returned to indicate the error. ERRORS
The pthread_detach() function will fail if: EINVAL The implementation has detected that the value specified by thread does not refer to a joinable thread. ESRCH No thread could be found corresponding to that specified by the given thread ID. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
pthread_create(3C), pthread_join(3C), attributes(5), standards(5) SunOS 5.11 23 Mar 2005 pthread_detach(3C)
All times are GMT -4. The time now is 09:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy