Sponsored Content
Operating Systems BSD Am searching for source code of openBSD kernel.. Post 302168216 by luckyy on Sunday 17th of February 2008 03:46:51 PM
Old 02-17-2008
Am searching for source code of openBSD kernel..

Hello Friends,

Am lakshma reddy, doing my masters, i had some interest in exploring the source code of any open LINUX/UNIX, i searched for that i know i can get it but this time am finding it difficult in doing that.

To be frank am new to this UNIX?LINUX platform. I need it since i want to improve and and start coding in C and C++, in much passionate way.

Some experts in this can help me it will of great help...

Anxiously looking for that
Thanks in advance

regards
lucky
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Does anybody know Kernel-2.4.33 source rpm URL??

Hi Everybody, I want to download the kernel-2.4.33 source rpm.Does anybody know from where should i download?? As in kernel.org there are .gz or .bz2 versions of kernel packages are available. Any help is welcome. Thanks, Sriram (2 Replies)
Discussion started by: sriram.ec
2 Replies

2. UNIX for Advanced & Expert Users

How to read freebsd kernel source?

I got the freebsd kernel source from the first install CD(in directory:\7.0-RELEASE\src\),isn't right? if so,how can i read it? Is there any tools? (1 Reply)
Discussion started by: zhouq3132
1 Replies

3. UNIX for Dummies Questions & Answers

How to read freebsd kernel source?

I got the freebsd kernel source from the first install CD(in directory:\7.0-RELEASE\src\),isn't right? if so,how can i read it? Is there any tools? (4 Replies)
Discussion started by: zhouq3132
4 Replies

4. BSD

BSD Kernel Source Code

Hi I need the BSD core (kernel) operating system Please let me download link I'm from Iran Please help me Thank you very much (1 Reply)
Discussion started by: sepadl71
1 Replies

5. UNIX for Dummies Questions & Answers

Any tips/suggestions for a newbie beginning to read the Linux Kernel Source Code

Hi All, I recently downloaded the Linux kernel source code, added them all to a project in MS VC++ and plan to read through it so that I can improve the way I code, read/understand a large code database and hopefully contribute something to the development of the Linux OS. I have taken a... (3 Replies)
Discussion started by: clavian
3 Replies

6. UNIX for Dummies Questions & Answers

How to install kernel source?

During installation of one of driver i needed to Remove any earlier version drivers using make clean -r command. Where i m getting following error. # make clean -r Kernel source is not installed make: *** Error 1 My kernel version # uname -r 2.6.18-128.2.1.4.9.el5xen Where... (4 Replies)
Discussion started by: pinga123
4 Replies

7. BSD

Copying OpenBSD Kernel from a non production to production machine

Hi All, There are few OpenBSD 4.8 servers without compiler installed at my working place. However, sometimes there are some patches released for patching the kernel. My question is: Can I setup a non production OpenBSD 4.8 server as a test machine with compiler installed and use it to... (1 Reply)
Discussion started by: lcxpics
1 Replies

8. UNIX for Dummies Questions & Answers

Kernel Source files Confusion

I have open suse kernel kernel 3.1.0-1.2-desktop on which I used kernel source 3.1.10-1.2 downloaded from kernel.org and so I guess I am facing issues while loading kernel modules. I went to site kernel-source-3.1.0-1.2.1.noarch.rpm openSUSE 12.1 Free Download where it shows 2 rpm files... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

9. Linux

Create a bootable PXE image from build kernel source code

Hi, Can i just ask how I can create a bootable PXE image from the built kernel source. What files do I need to get? Thanks! (1 Reply)
Discussion started by: h0ujun
1 Replies
ctags(1)						      General Commands Manual							  ctags(1)

NAME
ctags - Makes a tags file for source file objects. SYNOPSIS
ctags [-aBdFtuvw] [-f tags_file] pathname... ctags -x pathname... STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: ctags: SVID 3, XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
The following options conform to both the XCU5.0 and SVID 3 standards: Adds items to the tags file. This option can be very slow for large tags files. Creates a tags file with the name specified by tags_file. Causes ctags to display a list of object names as well as the line number and file name on which each is defined and the text of that line. This provides a simple index, which can be printed out as an off line readable function index. If you specify this flag, ctags does not build a tags file, but writes to standard output. The following options either conform to SVID 3 or are proprietary: [SVID3] Uses backward searching pattern (?...?). [Tru64 UNIX] Creates tags for #define directives that do not take arguments. #define directives that take arguments are tagged automatically. (The "#" and "define" may be separated by a space or tab.) [SVID3] Uses forward searching pattern (/.../) (default). [SVID3] Creates tags for type definitions (typedef), and for struct, union, and enum declarations. [SVID3] Updates the specified files in tags; that is, all references to them are deleted and the new values are added to the file. The tags file is sorted. This flag may be slow, so it is usually faster to simply rebuild the tags file. [Tru64 UNIX] Produces an index of the form expected by vgrind on the standard output. This listing con- tains the function name, file name, and page number (assuming 64-line pages). Because the output will be sorted according to the current collating sequence as defined by the value of the LC_COLLATE environment variable, it may be desirable to run the output through sort -f. Sample use: ctags -v files | sort -f > index vgrind -x index [SVID3] Suppresses warning diagnostics. DESCRIPTION
The ctags command makes a tags file for ex and vi editors from the specified C, Pascal, FORTRAN, yacc, lex, and LISP source files. A tags file gives the locations of specified objects (in this case functions and type definitions) in a group of files. Each line of the tags file contains the object name, the file in which it is defined, and an address specification for the object defini- tion. Functions are searched with a pattern and type definitions are searched with a line number. Specifiers are given in separate fields on the line, separated by spaces or tabs. Using the tags file, ex and vi can quickly find these object definitions. The following pathname operands conform with both the XCU5.0 and SVID 3 standards: Files with base names ending with the suffix are treated as C language source code. Files with base names ending with the suffix are treated as C language source code. Files with base names end- ing with the suffix are treated as FORTRAN-language source code. The following options either conform to SVID 3 or are proprietary: Files with base names ending with the suffix are treated as yacc source files. [Tru64 UNIX] Files with base names ending in are assumed to be LISP files if their first nonspace character is ; (semicolon), ( (open parenthesis), or [ (open bracket). Otherwise, the files ending in are assumed to be lex files. [SVID3] Files with base names ending in are assumed to be lex files. [SVID3] Other files are first examined to see if they contain any Pascal or FORTRAN routine definitions; if not, they are processed again for C definitions. The tag main is treated specially in C programs. The tag formed is created by prefixing M to the file name, removing a trailing (if any), and removing the leading path name components. This makes the use of ctags practical in directories with more than one program. RESTRICTIONS
[SVID3] Recognition of functions, subroutines, and procedures for FORTRAN and Pascal does not deal with block structure. Therefore, you cannot have two Pascal procedures in different blocks with the same name. The ctags command does not know about ifdefs. ENVIRONMENT VARIABLES
The following environment variables affect the behavior of ctags(): Provides a default value for the locale category variables that are not set or null. If set, overrides the values of all other locale variables. Determines the order in which output is sorted for the -x option. Determines the locale for the interpretation of byte sequences as characters (single-byte or multibyte) in input parameters and files. Determines the locale used to affect the format and contents of diagnostic messages displayed by the command. Determines the loca- tion of message catalogs for the processing of LC_MESSAGES. FILES
Default tags file. Use the -f flag to specify another file name. SEE ALSO
Commands: ex(1), lex(1), sort(1) vi(1), yacc(1) Standards: standards(5) ctags(1)
All times are GMT -4. The time now is 07:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy