본문 바로가기
반응형

#컴퓨터 과학 [Computer Science]64

[OS] 세마포어 (Semaphore)와 뮤텍스 (Mutex) What is difference between Semaphore and Mutex 🗂 세마포어 (Semaphore) wait(S) { while (S 1. 모든 자원이 점유되고 있는 상태일 경우에는 프로세스는 자원에 대하여 wait() 함수 수행을 요청하고 있으며 세마포어의 계수가 1 이상인 상태입니다. In case if the object is already locked, the process requesting resources waits and is queued by the system before lock is released. 뮤텍스 객체가 이미 잠금 (Locked) 상태일 경우에는 자원을 요청하는 프로세스는 대기하며 잠금해제 (Unlocked)가 될 때까지 시스템에서 대기합니다. 🚀 REF.. 2020. 2. 5.
[OS - 🍎 macOS] 전체 디스크 접근 권한 (Full Disk Access) 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 iOS 2020-02-03 09:53 2022.03.06. 21:57 Dev.Yang 🗂 전체 디스크 접근 권한 (Full Disk Access) Full Disk Access is a new security feature in macOS Mojave that requires some applications to be given full permission to access a user's protected files. This way, only applications that are approved can gain access. In previous versions of macOS, this permission was automatically g.. 2020. 2. 3.
[OS] 프로세스와 쓰레드의 차이점 (What is the difference between a process and a thread?) 프로세스는 뭐고 스레드는 뭔가요? + 프로세스 (Process)란? 컴퓨터 내에서 실행중인 프로그램을 일컫는 용어이며, 즉 프로세스는 '주어진 일을 해결하기 위한 목적으로 그 순서가 정해져 수행되는 일련의 절차'라고 정의할 수 있다. Each process provides the resources needed to execute a program. A process has a virtual address space, executable code, open handles to system objects, a security context, a unique process identifier, environment variables, a priority class, minimum and maximum work.. 2020. 1. 18.
[TECH] 🔗 개발 디자인 자료 사이트 (Development Design URL) 🔗 개발 디자인 자료 사이트 (Development Design URL) ➕ 001. Dribbble → https://dribbble.com Dribbble - Discover the World’s Top Designers & Creative Professionals Discover the world’s top designers & creatives Dribbble is the leading destination to find & showcase creative work and home to the world's best design professionals. dribbble.com ➕ 002. Material Design → https://material.io/design/ Design Build b.. 2020. 1. 14.
반응형