Skip to content

Instantly share code, notes, and snippets.

@nullsnet
nullsnet / text.md
Last active June 16, 2024 16:30
vxworks-sdk

新入社員向け教育資料: リアルタイムOSの基本概念

リアルタイムOSとは

リアルタイムOS (Real-Time Operating System, RTOS) とは、特定の時間内にタスクの実行を保証するために設計されたオペレーティングシステムである。RTOSは、厳密なタイミング制約を持つアプリケーションにおいて、予測可能な応答時間を提供する。この特性により、ミッションクリティカルなシステムにおいて安定した動作が求められる環境で広く使用されている。

リアルタイムOSのアーキテクチャ

リアルタイムOSのアーキテクチャは、以下のような特徴を持つ。

  1. タスク管理
  • マルチタスキング機能を持ち、複数のタスクを同時に実行可能。

user.js for Tampermonkey

  1. Install Tampermonkey
  2. Click 'RAW' to install
@nullsnet
nullsnet / Vagrantfile
Last active May 9, 2018 02:26 — forked from anthonysterling/Vagrantfile
Handy Vagrantfile for IE testing with Vagrant.
# Usage: IE={box} vagrant up
#
# Eg. IE=XPIE6 vagrant up
boxes = {
"XPIE6" => "http://aka.ms/ie6.xp.vagrant",
"XPIE8" => "http://aka.ms/ie8.xp.vagrant",
"VistaIE7" => "http://aka.ms/ie7.vista.vagrant",
"Win7IE8" => "http://aka.ms/ie8.win7.vagrant",
"Win7IE9" => "http://aka.ms/ie9.win7.vagrant",