Sponsored Content
Full Discussion: Some help and information
Top Forums UNIX for Dummies Questions & Answers Some help and information Post 302567881 by brusell on Tuesday 25th of October 2011 10:49:34 AM
Old 10-25-2011
Guy, how we can help you without information provided from your side??
Give some time to describing your particular problem and pay attention to important details.
 

8 More Discussions You Might Find Interesting

1. Programming

NEED Some Information!!!

Hi guys, do you know where I can find an information or example of creating a remote simulation banking application on UNIX. A client server socket programming using c language to build. using telnet to run. just a simple , add, withdraw, balance function. (1 Reply)
Discussion started by: btx
1 Replies

2. UNIX for Dummies Questions & Answers

Information

I'm new to unix and wanted to know if there are UNIX tools/programs on the market that can be loaded onto my laptop or external hard drive that I can use to practice and test what I'm learning. :) (2 Replies)
Discussion started by: Xman0ne
2 Replies

3. HP-UX

network information

Hello Guys! I am new from unix and I have a litle knowledge to some of the commands. my query is how can I view the network configuration of the station like the IP address, the NIS name , DNS etc. in windows we can get this info with the command ifconfig /all thanks, (1 Reply)
Discussion started by: eykyn17
1 Replies

4. UNIX for Dummies Questions & Answers

Need Information. Will Appreciate It

Hi guys i am new to linux, infact i have heared about it for a while now but never got it. I am prepared to give it a try but i need to know the system requirements. i have a 32bit, win xp, amd antlon 1.8ghz . will linux run fine on this system or do i need a new computer.. i have always... (2 Replies)
Discussion started by: rapzkilla
2 Replies

5. HP-UX

Need information on HP-UX....

Hi Guys, I'm new to HP-UX and i want installation procedure step by step.If i want take up the hp exam can any one give ful info about exam with new exam codes.I hav good knowlwdge on linux is it HP is similar to linux.If anybody having docs on HP-UX...pls reply me Regards, Vinay (2 Replies)
Discussion started by: vinay@wipro
2 Replies

6. Shell Programming and Scripting

Get information like substring

I retrieved values from postgresql database return the following line name ------------ myname (1 row) how can I extract "myname" out of the line? thanks (11 Replies)
Discussion started by: uativan
11 Replies

7. SuSE

fault information

Hi, I want to know where can I find the fault information of the system. I mean the event that the system may be occur, not the event happened on my system. Maybe there are some libraries or other website about logs collections. Thanks a lot. Best Wishes! (0 Replies)
Discussion started by: zhaoyy
0 Replies

8. What is on Your Mind?

Not enough information...

I appreciate the fact that rules are for everyone and I screwed up by not putting a screen printout in code brackets... However, I was a bit dismayed when I received the following and tried to reply to say "Thank you" for sending me the reminder. I could not reply and had no idea what the... (4 Replies)
Discussion started by: RogerBaran
4 Replies
INTRO(9)						   BSD Kernel Developer's Manual						  INTRO(9)

NAME
intro -- introduction to system kernel interfaces DESCRIPTION
This section contains information about the interfaces and subroutines in the kernel. PROTOTYPES ANSI-C AND ALL THAT Yes please. We would like all code to be fully prototyped. If your code compiles cleanly with cc -Wall we would feel happy about it. It is important to understand that this is not a question of just shutting up cc, it is a question about avoiding the things it complains about. To put it bluntly, do not hide the problem by casting and other obfuscating practices, solve the problem. INDENTATION AND STYLE
Believe it or not, there actually exists a guide for indentation and style. It is not generally applied though. We would appreciate if people would pay attention to it, and at least not violate it blatantly. We do not mind it too badly if you have your own style, but please make sure we can read it too. Please take time to read style(9) for more information. NAMING THINGS
Some general rules exist: 1. If a function is meant as a debugging aid in DDB, it should be enclosed in #ifdef DDB #endif /* DDB */ And the name of the procedure should start with the prefix DDB_ to clearly identify the procedure as a debugger routine. SCOPE OF SYMBOLS
It is important to carefully consider the scope of symbols in the kernel. The default is to make everything static, unless some reason requires the opposite. There are several reasons for this policy, the main one is that the kernel is one monolithic name-space, and pollution is not a good idea here either. For device drivers and other modules that do not add new internal interfaces to the kernel, the entire source should be in one file if possi- ble. That way all symbols can be made static. If for some reason a module is split over multiple source files, then try to split the module along some major fault-line and consider using the number of global symbols as your guide. The fewer the better. SEE ALSO
style(9) HISTORY
The intro section manual page appeared in FreeBSD 2.2. BSD
December 13, 1995 BSD
All times are GMT -4. The time now is 10:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy