FreeBSD book released

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements FreeBSD book released
# 1  
Old 08-21-2004
FreeBSD book released

.

Last edited by Driver; 10-22-2004 at 10:59 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

awk book

I was hoping someone could recommend a good book for awk. Maybe an online class? (1 Reply)
Discussion started by: Xterra
1 Replies

2. AIX

A book for sysadmin

Please i searching a book which covering system administration of aix7 or 6 :lvm,virtualization,fs,etc Ebook and amazon ok. Do you know something good? Thanks (1 Reply)
Discussion started by: Linusolaradm1
1 Replies

3. Red Hat

Linux book

Hi, Can any one suggest me which book will be good for learning Linux server admin. I am new to it and trying for interview preparation. Thanks (2 Replies)
Discussion started by: chetansingh23
2 Replies

4. What is on Your Mind?

looking for a book suggestion

On the basic concepts of programming. I mean I am 100% self taught so I need a book to fix all my bad habits and misconceptions. I mean I want a solid book over the basics. Explains what an array is, a string, variable, stacks, and so forth. I only know how to write code in shell,... (7 Replies)
Discussion started by: tlarkin
7 Replies

5. Red Hat

Best Book For RHEL5

Hey friends Anyone tell me the best book for learning RHEL5 from basic to master including everything that we can do with microsoft windows and server. Does anyone know any good institute for red hat linux server in delhi,india (1 Reply)
Discussion started by: neerajrawat1
1 Replies

6. BSD

Good book about the freeBSD architecure

Hi Guys, I need some help in getting a good book that describes the internals of the freeBSD OS, like the architecure, the process and memory management, etc.. I have some book which is named : the design and implementation of the freeBSD operating system, but I feel it's somewhat... (2 Replies)
Discussion started by: marwan
2 Replies

7. Programming

Application crashes in FreeBSD 7.1 while working ok in FreeBSD 6.3

Hello there, My mulithreaded application (which is too large to represent the source code here) is crashing after installing FreeBSD 7.1-RELEASE/amd64. It worked properly on others machines (Dual Cores with 4GB of RAM - FreeBSD 6.2-RELEASE/i386). The current machine has 2x Core 2 Duo... (1 Reply)
Discussion started by: Seenquev
1 Replies

8. Solaris

e-book

Hi everybody I a new one And I have just wanted to research on Sun Solaris So can you help me what e-book to read ( and if can you give me the direct address to load ) Thks so much (3 Replies)
Discussion started by: iwbasts
3 Replies

9. News, Links, Events and Announcements

FreeBSD nVidia Beta Drivers released!

http://www.nvidia.com/content/drivers/drivers.asp I know what I am doing this weekend! I live life on the edge, baby! (0 Replies)
Discussion started by: auswipe
0 Replies
Login or Register to Ask a Question
DtMmdbBookGetTocObjectId(library call)									    DtMmdbBookGetTocObjectId(library call)

NAME
DtMmdbBookGetTocObjectId -- obtains the locator of a book's TOC section SYNOPSIS
#include <DtMmdb.h> DtMmdbHandle* DtMmdbBookGetTocObjectId( DtMmdbInfoRequest* request); DESCRIPTION
The DtMmdbBookGetTocObjectId function returns the object identifier of the specified book's TOC section. Use the DtMmdbFreeHandleList function to release the memory when the object identifier is no longer needed. Table lookup is involved when the identifier is specified by either the primary_oid or sequence_num field. ARGUMENTS
request Specifies the bookcase in the bookcase descriptor field, as well as a valid value in the primary_oid, the secondary_oid, or the sequence_num field. The primary_oid represents the DtInfo Database object identifier of the TOC section; the secondary_oid rep- resents the object identifier of the book itself; and the sequence_num represents the sequence number of the book within the bookcase (0 based). If more than one of these fields have a valid value, the order of precedence is: primary_oid, secondary_oid, and, last, sequence_num. RETURN VALUE
If DtMmdbBookGetTocObjectId completes successfully, it returns a pointer to the object identifier for the book's TOC section. If it fails, it returns a NULL pointer. EXAMPLE
The following shows how a DtMmdbBookGetTocObjectId call might be coded. DtMmdbInfoRequest request; request.bookcase_descriptor = DtMmdbGetBookCase(myInfoLibPtr, "myBase"); request.sequence_num = 1; DtMmdbBookGetTocObjectId(&request); SEE ALSO
TO BE SUPPLIED. DtMmdbBookGetTocObjectId(library call)