473,788 Members | 2,719 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

limite the use of CPU by threads.

i want to know how to limite the use of CPU by threads using C++. can
you help me please?

May 16 '06 #1
6 1555
VirtualDev wrote:
i want to know how to limite the use of CPU by threads using C++. can
you help me please?


You need to ask this in a news group specific to your compiler
and operating system. Since you don't even mention what CPU
you are using, it's pretty difficult to even begin to guess what
news group that might be. Try groups.google.c om and do some
searching for your platform.

Here we only talk about the standard C++ language, and that
does not include any notion of a thread, never mind doing any
sort of limiting the CPU in a thread.
Socks

May 16 '06 #2
VirtualDev wrote:
i want to know how to limite the use of CPU by threads using C++. can
you help me please?


You are asking how to set the scheduler priority of threads.

You need to use Google to find a forum dedicated to your threading library.
This forum is only qualified to discuss the C++ language itself, which
doesn't come with a portable thread solution.

Further, both the need to have threads and the need to schedule their
priorities are signs of a poor design. Entry-level programmers often use
threads instead of building an event-driven architecture. So you might
think about simplifying your design, too.

--
Phlip
http://www.greencheese.us/ZeekLand <-- NOT a blog!!!
May 16 '06 #3
thanks a lot.

May 17 '06 #4
Puppet_Sock wrote:
VirtualDev wrote:
i want to know how to limite the use of CPU by threads using C++. can
you help me please?


You need to ask this in a news group specific to your compiler
and operating system. Since you don't even mention what CPU
you are using, it's pretty difficult to even begin to guess what
news group that might be. Try groups.google.c om and do some
searching for your platform.

Here we only talk about the standard C++ language, and that
does not include any notion of a thread, never mind doing any
sort of limiting the CPU in a thread.
Socks


Can someone please explain to me this standard C/C++ vs. platform
dependent issue. Considering threads, the C run-time library includes a
function __beginthread. Under Windows (pardon me for saying) this is in
a file libcmt.lib. If I link with that library or call functions from it
(e.g. the aforementioned beginthread), does that mean my source won't
port to linux?

Then how do i know what is and what isn't a part of standard C/C++, that
is, which functions i mustn't call if i want to retain portability?

Dumb question, i know, but the "this is not a standard c++ topic" kind
of replies seem to exuberate here.
May 17 '06 #5
damjan wrote:
[..]
Can someone please explain to me this standard C/C++ vs. platform
dependent issue. Considering threads, the C run-time library includes
a function __beginthread.
Here is your explanation: the C run-time library only includes that
function on _your_ *particular* platform. It doesn't on many others.
That's what it means "platform-dependent".
Under Windows (pardon me for saying) this
is in a file libcmt.lib. If I link with that library or call
functions from it (e.g. the aforementioned beginthread), does that
mean my source won't port to linux?
It might. Or it might not. You need to ask in a Linux newsgroup.
Then how do i know what is and what isn't a part of standard C/C++,
that is, which functions i mustn't call if i want to retain
portability?
RTFM. If it does not specify which functions are ANSI (ISO) standard
library functions, then get a better M.
Dumb question, i know, but the "this is not a standard c++ topic" kind
of replies seem to exuberate here.


Unfortunately. Many first-time posters simply do not understand that the
library they are using consists of two parts: the standard part and the
platform-specific part. They often confuse the two. The same with the
language. There is the standard part and there are extensions. Every
compiler provides some. We in comp.lang.c++ only discuss standard parts
of both the langauge and the library. For compiler-specific extensions
there are compiler-specific newsgroups. For platform-specific library
portions there are platform newsgroups. Easy? I say. But seems far too
complicated for some posters.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
May 17 '06 #6

Phlip wrote:
VirtualDev wrote:
i want to know how to limite the use of CPU by threads using C++. can
you help me please?
You are asking how to set the scheduler priority of threads.

You need to use Google to find a forum dedicated to your threading library.
This forum is only qualified to discuss the C++ language itself, which
doesn't come with a portable thread solution.

Further, both the need to have threads and the need to schedule their
priorities are signs of a poor design.


Are you saying that use of threads is poor design?
Are you saying that setting priority of a thread is a sign of poor
design?

Entry-level programmers often use threads instead of building an event-driven architecture. So you might
think about simplifying your design, too.


Are you saying that a system using threads is an alternative to an
event driven system?

regards
Andy Little

May 18 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5403
by: Ronan Viernes | last post by:
Hi, I have created a python script (see below) to count the maximum number of threads per process (by starting new threads continuously until it breaks). ###### #testThread.py import thread, sys
0
2011
by: Al Tobey | last post by:
I was building perl 5.8.2 on RedHat Enterprise Linux 3.0 (AS) today and noticed that it included in it's ccflags "-DTHREADS_HAVE_PIDS." I am building with -Dusethreads. With newer Linux distributions using the Native Posix Threading Layer (NPTL), this isn't entirely true anymore and is AFAIK unsupported (using a pid to signal/identify threads). I removed it from my config.sh script and ran Configure -der. make test runs just fine. ...
0
1263
by: kovac | last post by:
Hi NG With the Directory class of Vb. NET I can accessed Active Directory without restriction. If I make a query for the properties of a container (for example, MEMBERS), I get back only 1000 Records! How can I turn off this Limite? I use the following code: ...
6
3206
by: m | last post by:
Hello, I have an application that processes thousands of files each day. The filenames and various related file information is retrieved, related filenames are associate and placed in a linked list within a single object, which is then placed on a stack(This cuts down thread creation and deletions roughly by a factor of 4). I create up to 12 threads, which then process a single object off of the stack. I use a loop with a boolean...
10
1682
by: [Yosi] | last post by:
I would like to know how threads behavior in .NET . When an application create 4 threads for example start all of them, the OS task manager will execute all 4 thread in deterministic order manes, OS execute (All have same priority) Thread#1 may be other threads, Thread#2 may be other threads, Thread#3 may be other threads,
3
5974
by: mjheitland | last post by:
Hi, I like to know how many threads are used by a Threading.Timer object. When I create a Threading.Timer object calling a short running method every 5 seconds I expected to have one additional ThreadPool thread. And that is exactly what MS VIsual Studio shows. But when I run Processexplorer or Taskmanager I see 2 additional threads, after a while another 2 additional threads. With the 3 threads at start time we have totally 7 threads.
10
1762
by: Darian | last post by:
Is there a way to find all the thread names that are running in a project? For example, if I have 5 threads T1, T2, T3, T4, T5...and T2, T4, and T5 are running...I want to be able to know that T2, T4 and T5 are already running. Thanks, Darian
1
3007
by: Albano Alves | last post by:
Boas! Estou desenvolver um gestor documental para funcionar numa intranet. Uma das acções é o upload de ficheiros para o servidor. Existe alguma forma de ilimitar o tamanho dos ficheiros no upload.? Quero dar a possibilidade de fazer upload do ficheiro qualquer que seja o tamanho ainda que demore. Albano
2
1520
by: shahalashamo | last post by:
in order to upload image to database,i put a fileUpload control in the InsertItemTemplate of the formView,the code as follows: <asp:FileUpload ID="FileUploadKeyImage" runat="server" FileBytes='<%# Bind("keyImage") %>' /> and the FormView is bind to a sqlDataSource,part of code in sqlDataSource is <asp:Parameter Name="keyImage" Type="object" /> ,but when i click the "insert" button...
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10373
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10177
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9969
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8995
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5403
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4074
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3677
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.