Subversion Repositories HelenOS-historic

Rev

Rev 1576 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1576 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /**
-
 
30
 * @defgroup proc Proc
-
 
31
 * @ingroup kernel
-
 
32
 * @{
-
 
33
 * @}
-
 
34
 */
-
 
35
 
-
 
36
 /** @addtogroup genericproc generic
-
 
37
 * @ingroup proc
-
 
38
 * @{
-
 
39
 */
-
 
40
 
29
/**
41
/**
30
 * @file    scheduler.c
42
 * @file
31
 * @brief   Scheduler and load balancing.
43
 * @brief   Scheduler and load balancing.
32
 *
44
 *
33
 * This file contains the scheduler and kcpulb kernel thread which
45
 * This file contains the scheduler and kcpulb kernel thread which
34
 * performs load-balancing of per-CPU run queues.
46
 * performs load-balancing of per-CPU run queues.
35
 */
47
 */
Line 690... Line 702...
690
        spinlock_unlock(&cpus[cpu].lock);
702
        spinlock_unlock(&cpus[cpu].lock);
691
    }
703
    }
692
   
704
   
693
    interrupts_restore(ipl);
705
    interrupts_restore(ipl);
694
}
706
}
-
 
707
 
-
 
708
 /** @}
-
 
709
 */
-
 
710