Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 578 Bytes

File metadata and controls

35 lines (23 loc) · 578 Bytes

Map

  • Change pthread_mutex to pthread_rwlock
pthread_rwlock_destroy 
pthread_rwlock_init

pthread_rwlock_rdlock

pthread_rwlock_tryrdlock

pthread_rwlock_trywrlock

pthread_rwlock_unlock 
pthread_rwlock_wrlock

pthread_rwlockattr_destroy

pthread_rwlockattr_getpshared

pthread_rwlockattr_init
  • What happens if a thread with a read lock tries to acquire a write lock?

Networking

  • Gossip protocol
  • Try version with UDP

Persistence

  • Append-only log of the CLI commands

Encoding