We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
매번 struct 붙이는 것이 짜증나지 않으신가요? 이번 기회에 한 번에 typedef로 타입을 짧게 쓰는 건 어떨까요? 전부 다 바꾸는 건 의미가 없으므로 자주 쓰일 타입들만 그렇게 작성해봅시다.
typedef
struct thread ⟶ Thread
struct thread
Thread
struct list_elem ⟶ ListElem
struct list_elem
ListElem
struct semaphore ⟶ Sema
struct semaphore
Sema
struct lock ⟶ Lock
struct lock
Lock
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
swjungle-week07-09/threads/synch.c
Lines 210 to 213 in 5c7c1fa
lock_acquire
No branches or pull requests
매번 struct 붙이는 것이 짜증나지 않으신가요? 이번 기회에 한 번에
typedef
로 타입을 짧게 쓰는 건 어떨까요? 전부 다 바꾸는 건 의미가 없으므로 자주 쓰일 타입들만 그렇게 작성해봅시다.struct thread
⟶Thread
struct list_elem
⟶ListElem
struct semaphore
⟶Sema
struct lock
⟶Lock
The text was updated successfully, but these errors were encountered: