Nortel exams


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Nortel exams
# 1  
Old 02-21-2008
Nortel exams

Hey everyone . iam taking some nortel exams in coming few weeks . around 4 of them and came hotcerts.com which is offering $85 all exams package . can anyone tell me how good are their exam materials in reference to real exams ? . i dont want to miss this package if they are good as iam going to sit for ccnp after nortel exams . so all comments are welcome . plz let me know asap
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Linux exams

Can some one give me any link to download gide lines or book for linux exams (0 Replies)
Discussion started by: ded325
0 Replies

2. Solaris

ORACLE Solaris 10 Exams

Hello Admins; I need to get the certification in Oracle Solaris 10. As far as I know, there is $300 fee for each part (1 & 2 ). Does anybody know where we can get the discount coupons for these exams. So that it would be cheaper than 300 bucks... Thanks (6 Replies)
Discussion started by: snchaudhari2
6 Replies

3. Linux

LPI exams

Hello, Can any one can guide me on LPI examinations about what is the marking scheme & with study guide links.... (1 Reply)
Discussion started by: binny
1 Replies

4. Solaris

Has anyone here taken the Solaris certification exams?

I'm thinking of taking the Solaris 10 exams, and never taken Sun's exams before. What kind of home lab is adequate for preparation? Would a couple of Sun Blade 100's and some USB storage be sufficient? (3 Replies)
Discussion started by: yoda9999
3 Replies

5. Post Here to Contact Site Administrators and Moderators

Reg Certified Exams

Dear Sir/M'am, I am interested to write your Unix certified Unix Programming examination and get the certification.I know the basic commands used in UNIX.So, kindly guide me regarding the preparations and the approach to attend the examination.If possible,suggest me the books for... (1 Reply)
Discussion started by: Roopadevi
1 Replies

6. UNIX for Dummies Questions & Answers

solaris exams

hi , new unix admin here, in solaris only right now. Looking to take the cert exams for solaris, specifically scsa 2 exams. anyone know a good book(s) that may also include cd's with practice exams? (3 Replies)
Discussion started by: BG_JrAdmin
3 Replies

7. What is on Your Mind?

UNIX Exams

Hey all. I know this may have been asked before though I thought this would be the best place for teh question. I'm about to start my study days yet again to sit the Sun 210-014 & 015. I was just wondering if anyone else has sat these exams and would like to know if they have any tips for... (1 Reply)
Discussion started by: woofie
1 Replies

8. AIX

aix exams materials

hi all , please i need to have good book to read or manualls or pdf files about aix exam for aix user and administrator . version 4.3.3 or 5l with old exams or sample exams .. very urgent . is there a newsgroup for aix users ?? thanks (4 Replies)
Discussion started by: tamemi
4 Replies
Login or Register to Ask a Question
UTRACE_PREPARE_EXAMI(9) 					  utrace core API					   UTRACE_PREPARE_EXAMI(9)

NAME
utrace_prepare_examine - prepare to examine thread state SYNOPSIS
int utrace_prepare_examine(struct task_struct * target, struct utrace_engine * engine, struct utrace_examiner * exam); ARGUMENTS
target thread of interest, a struct task_struct pointer engine engine pointer returned by utrace_attach_task exam temporary state, a struct utrace_examiner pointer DESCRIPTION
This call prepares to safely examine the thread target using struct user_regset calls, or direct access to thread-synchronous fields. When target is current, this call is superfluous. When target is another thread, it must held stopped via UTRACE_STOP by engine. This call may block the caller until target stays stopped, so it must be called only after the caller is sure target is about to unschedule. This means a zero return from a utrace_control call on engine giving UTRACE_STOP, or a report_quiesce or report_signal callback to engine that used UTRACE_STOP in its return value. Returns -ESRCH if target is dead or -EINVAL if UTRACE_STOP was not used. If target has started running again despite UTRACE_STOP (for SIGKILL or a spurious wakeup), this call returns -EAGAIN. When this call returns zero, it's safe to use struct user_regset calls and task_user_regset_view on target and to examine some of its fields directly. When the examination is complete, a utrace_finish_examine call must follow to check whether it was completed safely. Kernel Hackers Manual 2.6. July 2010 UTRACE_PREPARE_EXAMI(9)