Sponsored Content
Full Discussion: HP-UX Internals Book
Operating Systems HP-UX HP-UX Internals Book Post 47900 by nitrile on Saturday 21st of February 2004 12:57:06 PM
Old 02-21-2004
Excellent, thanks for the heads up.
 

9 More Discussions You Might Find Interesting

1. New to Unix. Which books should I read?

UniX internals Material

Hi! I have 1.5 years experience in unix environment and shell scripting. Now, I started learning UNIX internals and network programming. Can you please help in finding the same material on the net Thanks Srinivas. (7 Replies)
Discussion started by: srinivaskathika
7 Replies

2. Filesystems, Disks and Memory

on unix internals

will anybody tell me how can i access all the fields of process table .if there is any structure and a system call please specify . (1 Reply)
Discussion started by: vish_shan
1 Replies

3. Programming

UNIX Internals, Help required...

I know UNIX user level commands, shell scripts. But i have no idea about kernel level programming and networking. I know the terms semaphore,IPC,socket programming. But i don't know in details what are these. I need to know the following. 1. Unix kernel level programming. 2. Unix Internals. 3.... (4 Replies)
Discussion started by: digdarshan
4 Replies

4. Linux

Kernel internals for ARM

Hi, Does anybody have a good pointer on Linux kernel internals for ARM architecture? I can locate plenty for x86 but since ARM is RISC I think there would be subtle changes. So if somebody has a knowledge of good document on Linux Kernel internals for ARM or even a comparative study of kernel on... (0 Replies)
Discussion started by: Rakesh Ranjan
0 Replies

5. Programming

Need more info on internals of c compilers

Hello Gurus, i am ok with the concepts of c language but i would like to know more about the internals of c with respect to the compilers what happens when we say gcc filename.c the a.out will get created(what actaully compiler does to the code inaddition to generating object code) ... (5 Replies)
Discussion started by: MrUser
5 Replies

6. Programming

Internals of the printf function?

hey all, im a new programmer. i was wondering how you would go about writing the printf function yourself? it is my understanding that when you call printf you are calling an already written function and just providing an argument? if this is the case, is it possible to write that function... (8 Replies)
Discussion started by: Christian.B
8 Replies

7. UNIX for Dummies Questions & Answers

Unix mail command internals

Hi all , I wanted to know how does a 'mail' command works in unix. Does it use an smtp server internally ? How and where it is configured then ? I am trying to google out the same , but not getting much help. Any suggestions with be of great help. - Andy (5 Replies)
Discussion started by: anindyabecs
5 Replies

8. UNIX for Advanced & Expert Users

GDB Breakpoint Internals

When we put a breakpoint using gcc then what all things happen internally and how the gdb using break is able to pause the execution of process( instead of killing it ) and later on resume the process execution? (0 Replies)
Discussion started by: rupeshkp728
0 Replies

9. What is on Your Mind?

How to switch from SVR4/BSD internals to Linux internals?

Hello, Long-time Unix hacker here - I've worked on four variants of the kernel prior to the introduction of Linux. In my spare time, I've written Linux (Ubuntu) device drivers, kernel modules, cross-compiled, and built the kernel. I'd like to do Linux internals/device drivers as a day job,... (1 Reply)
Discussion started by: OriginalVersion
1 Replies
Internals(3)						User Contributed Perl Documentation					      Internals(3)

NAME
Internals - Write-protect variables, manipulate refcounts SYNOPSIS
use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); $object = My::Class->new(@parameters); SetReadOnly($object); SetReadWrite($object); if (IsWriteProtected($object)) { ... } $value = GetRefCount($object); SetRefCount($object,$value); or package My::Class; use Internals; @ISA = qw(Internals); $object = My::Class->new(@parameters)->SetReadOnly(); $object->SetReadWrite(); if ($object->IsWriteProtected()) { ... } $value = $object->GetRefCount(); $object->SetRefCount($value); or use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); SetReadOnly($scalar); SetReadOnly(@array); SetReadOnly(\%hash); SetReadOnly($hash{$element}); SetReadOnly($reference); etc. DESCRIPTION
This module allows you to write-protect and write-enable your Perl variables, objects and data structures. Moreover, the reference count of any Perl variable can be read and set. You can never pass the object directly on which to perform the desired action, you always have to pass a reference to the variable or data structure in question. This comes in handy for objects and anonymous data structures, where you only have a reference anyway! BEWARE: This module is DANGEROUS! DO NOT attempt to unlock Perl's built-in variables! DO NOT manipulate reference counts unless you know exactly what you're doing! ANYTHING might happen! Hell might break loose! ":-)" YOU HAVE BEEN WARNED! VERSION
This man page documents "Internals" version 1.1. AUTHOR
Steffen Beyer mailto:sb@engelschall.com http://www.engelschall.com/u/sb/download/ COPYRIGHT
Copyright (c) 2001 by Steffen Beyer. All rights reserved. LICENSE
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e., under the terms of the "Artistic License" or the "GNU General Public License". Please refer to the files "Artistic.txt" and "GNU_GPL.txt" in this distribution for details! DISCLAIMER
This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the "GNU General Public License" for more details. perl v5.18.2 2001-09-30 Internals(3)
All times are GMT -4. The time now is 11:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy