Multicore from a different angle


 
Thread Tools Search this Thread
Operating Systems HP-UX Multicore from a different angle
# 8  
Old 12-08-2005
Good luck with that man. You are basically looking to interact with the hardware yeah you could find this out with parstatus if your machine were Npar'd. UNIX itself only really has an interest in knowing what procs it has available. Not far from trying to determine the color of the machines ethernet cable from a terminal. I guess you could index the model number and type of processors in your script and compare it tothe OS reporting.
Have a good one,
Aaron
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How give tasks to individual processors in a multicore processor ?

Hi all, Using shell script, how to assign tasks to individual processors in a multicore processor ? For example: If I have 4 processors, I want to give one job to each of the processors. (When I give multiple jobs, it's assigning all the load to a single processor. ) Thanks R (5 Replies)
Discussion started by: habzone2007
5 Replies

2. HP-UX

How do I detect multicore processors?

I'm fairly new to HP-UX, and I need to know how to identify the number of cores on a PA-8800 processor from the command line. Any help here would be appreciated. (11 Replies)
Discussion started by: Midcain
11 Replies

3. Post Here to Contact Site Administrators and Moderators

angle brackets should be escaped automatically

I think that HTML code within posts should be turned off -- the vB Code can provide all the features we need. Then, you should modify the program to automatically escape any angle brackets, so that < gets translated to < and > gets translated to > I see a lot of people garble their posts... (4 Replies)
Discussion started by: PxT
4 Replies

4. Post Here to Contact Site Administrators and Moderators

Angle brackets

From the Apache thread in the Adanced forum: Thats because your browser interprets anything within angle brackets to be an HTML tag. You need to quote these brackets if you want them to appear correctly. The proper quotes are: &amp;lt; for < and &amp;gt; for > So, for example, you would have... (1 Reply)
Discussion started by: PxT
1 Replies
Login or Register to Ask a Question
fixcos(3alleg4) 						  Allegro manual						   fixcos(3alleg4)

NAME
fixcos - Fixed point cosine of binary angles. Allegro game programming library. SYNOPSIS
#include <allegro.h> fixed fixcos(fixed x); DESCRIPTION
This function finds the cosine of a value using a lookup table. The input value must be a fixed point binary angle. Example: fixed angle; float result; /* Set the binary angle to 45 degrees. */ angle = itofix(32); /* The cosine of 45 degrees is about 0.7071. */ result = fixtof(fixcos(angle)); ASSERT(result > 0.7 && result < 0.71); RETURN VALUE
Returns the cosine of a fixed point binary format angle. The return value will be in radians. SEE ALSO
, ex12bit(3alleg4), ex3buf(3alleg4), exblend(3alleg4), excustom(3alleg4), exspline(3alleg4), exupdate(3alleg4) Allegro version 4.4.2 fixcos(3alleg4)