C4Swimmers Newsletter  

Solaris

Solaris related topics

Search Engine on C Programming

Search for C/C++/Unix Programming related information.
<!-- Google CSE Search Box Begins -->



<!-- Google CSE Search Box Ends -->

(Download) Serial Numbers of Every Kind of Softwares

Serial Numbers of Every Kind of Softwares

 

 

(Slides) Debugging Applications with GNU Debugger

(Video Lecture) Programming & debugging series - tutorial 4

We code a small c program which we'll examine using the gdb debugger so to observe how the stack gets used and organized.

(Video Lecture) Programming & debugging series - tutorial 3

We programmed a small program with an intentionally bug in it so we can use the debugger to find it and eventually correct it.

(Video Lecture)Programming & Debugging series - tutorial 2

In this tutorial we'll go through the process of programming a C windows console program and use the debugger gdb.exe to disassemble it and find out what is going on under the hood.

(Video Lecture) Programming & Debugging series - tutorial 1

In this tutorial we'll explore some of the tools that come with DevC++ IDE, These tools include gcc.exe, gdb.exe, ogjdump.exe and strings.exe.

JOB OPENINGS

Hi Guys
Here there are various openings and high end work oppoortunities looking for ppl with the strong exposure on kernel and internals.
The companies like
*Net Apps
* Huawei Technologies
* IBM--ISL
* HP
* Inmage Systems--HYD
So if u r looking for job change be feel free to send ur updated cv to
catchmeera@gmail.com

Play "Temple of the Sun" gaming contest and you can Win 5000USD

http://www.sun.com/templeofthesun

Hi All,

To promote Sun Studio in a big way, Sun Microsystems is organizing Temple of the Sun gaming contest and you can win 5000USD.

Visit http://www.sun.com/templeofthesun to play the game.

NOTE: The contest will be closing on June 19th, 2007.

Also you'll be having a choice to get the FREE Solaris 10 OS DVD kit
that includes Sun Studio and Netbeans software.

NOTE : *This contest is not open to sun employees*, but you can play the

Command to show all running daemons or background processes

The following command can be used to display the list of daemons running or background processes whose parent pid (PPID) is 1:

#ps -aef | awk "{if ( \$3 == 1 ) { print \$_ }}"




With little modification to the above command we can display the list of childrens of a specific process:

#ps -aef | awk "{if ( \$3 == pid ) { print \$_ }}"

Note: Here replace 'pid' with the process id (or pid) of your choice.

Linked List Questionnaire - A good collection of questions on Linked Lists

Linked List

- In this page, I'm maintaining the collection of Linked List queries. Please don't put solutions here....
In case if you want solutions or suggestions, discuss with c4swimmers community members by sending a mail to c4swimmers@yahoogroups.com



* How to declare a structure of a linked list? Also implement a Generic Linked List.

* Implement a Stack (LIFO) using singly linked list?

* Write a C program to implement a Queue (FIFO) using singly linked list?

* Write a C program to reverse a singly linked list?

Sun is offering a FREE DVD of Solaris 10 OS and Sun Studio 11

Request FREE DVD of Solaris 10 OS and Sun Studio 11 software:

http://www2.sun.de/dc/forms/reg_us_2211_391.jsp

Opening for C++ Professionals for an US Based MNC

Hi,
This has reference to Your Profile in our database.

We have an immediate Opening with One of the Top US Based MNC,Bangalore .

Requirement :

Exp : 2 - 8 yrs
Skills : C++ on Unix/Linux/Solaris Platform
Job Location : Bangalore

If Interested,Please send us Your Updated profile along with the below given details to process.

Current Ctc:
Expected Ctc:
Notice Period:
Willing to Relocate to Bangalore:

Expecting Your Reply ASAP.

Best Regards
Venkat
Tel:-91-080-26588308/26588320
E-Mail : plakon_sqajobs@yahoo.co.in
plakon.suvidha@gmail.com

(TIPS & TRICKS) C++ Pitfalls, by: Cay S. Horstmann

C++ Pitfalls, by: Cay S. Horstmann

C++ Pitfalls with Source Code EXAMPLES

What is a pitfall?
Constructor pitfalls
Destructor pitfalls
Stream pitfalls
Overloading pitfalls
Exception pitfalls
Container pitfalls


Click on the link to see the Article...

Courtesy:
http://www.horstmann.com/cpp/pitfalls.html

Tech Talk About C++ and C : Extensive C++ and C FAQ

Tech Talk About C++ and C : Extensive C++ and C FAQ

Discuss related issues in give link..
1. What book do you recommend?
2. Where is the FAQ for the various C and C++ newsgroups?
3. Can I really get the C++ Standard electronically for $18?
4. Can I get Standard C electronically too?
5. What's wrong with code that uses void main()?
6. What about returning from main()?
7. Where does the int returned from main() go?
8. What's the difference between endl and '\n'?
9. Why can't I fflush(stdin), or any input stream??
10. How do I remove all chars from a stream??

(TUTORIAL) C++ Programming Language Tutorials

C++ Programming Language Tutorials

Lectures Handouts

1. Overview of the C-portions of C++ (e.g., loops, structs, arrays, basic data types, etc.)

2. A quick tour through C++, focusing primarily on classes, templates, inheritance, and dynamic binding.

3. An extensive tour through C++ language features, illustrating the major and minor differences compared with C.

4. An in-depth look at defining abstract data types in C++, focusing primarily on classes, templates, and exception handling.

5. An in-depth look at C++ single and multiple inheritance.

(FAQ) Operating System (OS) Interview FAQ Questions.

Operating System (OS) Interview FAQ Questions.

1. What is MUTEX ?
2. What isthe difference between a ‘thread’ and a ‘process’?
3. What is INODE?
4. Explain the working of Virtual Memory.
5. How does Windows NT supports Multitasking?
6. Explain the Unix Kernel.
7. What is Concurrency? Expain with example Deadlock and Starvation.
8. What are your solution strategies for “Dining Philosophers Problem” ?
9. Explain Memory Partitioning, Paging, Segmentation.
10. Explain Scheduling.
11. Operating System Security.
12. What is Semaphore?
13. Explain the following file systems : NTFS, Macintosh(HPFS), FAT .

(Reference) A Handy Tutorial on Bash Unix shell

A Handy tutorial on Bash Unix shell

A short intro about Bash and Most commonly used Bash commands

  • Bash is the shell, or command language interpreter, for the GNU operating system. The name is an acronym for the 'Bourne-Again SHell'.

Multithreaded Programming Tutorial with Thread Visualization System

Multithreaded Programming with ThreadMentor: A Tutorial

ThreadMentor is designed to help you learn multithreaded programming and the use of synchronization primitives easily. It consists of three components:
* a class library that simplifies your programming task
* a visualization system that permits you to see the execution behavior of every threads and synchronization primitives in your threaded program, and
* mtuThread, a user-level kernel that supports non-preemptive multithreaded programming.

ThreadMentor is portable and runs on Sun Solaris, Windows, any system (e.g., Linux) that supports Pthread, and mtuThread. However, all of these system dependent issues are hidden from the user by the class library. Therefore, ThreadMentor is platform transparent.

Syndicate content