A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

tymict/icu-safety-runtime Private

[참조 MVP] ICU 안전·실시간 런타임 — 비상정지, 통신 Watchdog과 치명 고장을 단일 안전상태로 집계합니다.

https://git.agrithing.ai/tymict/icu-safety-runtime.git
8 commits
COMMIT DETAIL

demo: introduce unsafe unbounded copy for gate test

A-SW Quality Demo <[email protected]> · 2026. 8. 2. 오후 9:27:49
851fe1c00985bfe61303688e31b37dd93e3cb0a0
1 changed files +3 −0 parent debf6aa
modified src/component.c +3−0 View file
@@ -4,3 +4,6 @@ asw_safety_result asw_evaluate_safety(int emergency_stop, int critical_fault_cou
4 4 asw_safety_result result = {unsafe ? ASW_SAFE_STOP : ASW_RUN, unsafe ? 0 : 1, unsafe ? 1 : 0};
5 5 return result;
6 6 }
7 +
8 + #include <string.h>
9 + void asw_demo_unbounded_copy(char *target, const char *source) { strcpy(target, source); }