YangYeh

@YangYeh

Joined on Oct 5, 2021

  • Presenter: YangYeh-PD video :::info My Question List Are Scheduling Classes specified by the source program or identified by the scheduler? Why SCHED_IDLE does belong to idle_sched_class, what is the difference? What is sleep process doing in Early Linux Scheduler? Why the process is to do with ==interactivity==? :::
     Like  Bookmark
  • contributed by < YangYeh-PD > Problem 1: Computing the Square Root How it works Suppose that $$ N^2 = (000a_na_{n-1}a_{n-2}...a_1a_0)^2, \textrm{where }a_m = 2^m. $$ then
     Like  Bookmark
  • contributed by < YangYeh-PD > Linked List and its Relevant APIs Consider the structure node definition, typedef struct __node { struct __node *left, *right; struct __node *next; long value; } node_t;
     Like  Bookmark
  • contributed by < YangYeh-PD > Development Environment $ gcc --version gcc (Ubuntu 13.2.0-4ubuntu3) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 39 bits physical, 48 bits virtual
     Like  Bookmark
  • contributed by < YangYeh-PD > 測驗 1 Linked List 在 Linux 核心的實作 如下圖,在 list.h 當中,Linked List 其實是由 list_head 來實作的。 struct list_head { struct list_head *prev; struct list_head *next; };
     Like  Bookmark