0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

カーネルとは

0
Posted at

カーネルとは

OSを構成するソフトウェアの一種。プログラム/プロセスの起動や終了、メモリの割り振りなどをソフトウェアとハードウェアの間で仲介する。プロセスがカーネルに処理を依頼する際、システムコールが生成される。

こんなディレクトリの中にある

/work_dir
|-- hello.py

こんなファイルを実行して

python hello.py
#!/usr/bin/python3
print('Hello, world!')

システムコールを追跡してみる

$ strace -o hello.py.log ./hello.py
$ cat hello.py.log
...
write(1, "Hello, world!\n", 14)         = 14
...

色々と出てくる中でwrite()システムコールが発行されていることがわかる

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?