Click here to Skip to main content
15,891,843 members
Articles / Desktop Programming / Windows Forms

CPUAlert: Save your CPU from Burning Hot and Battery Running Out Quickly

Rate me:
Please Sign up or sign in to vote.
4.74/5 (20 votes)
11 Jun 2011CPOL5 min read 91.2K   1.6K   69  
CPUAlert monitors CPU and Memory consumption of processes and alerts you when they are taking too much consistently and gives you an option to recycle or terminate
namespace CPUMonitor
{
    using System;
    using System.Collections.Generic;
    using System.Text;

    public class ProcessInfo
    {
        #region Fields

        public bool CanRestart;
        public int CpuUsage;
        public string Description;
        public int Id;
        public string Name;
        public string Path;
        public string Title;
        public long WorkingSet;

        #endregion Fields
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions