Add -ul option for limiting user pool size.
[pintos-anon] / src / threads / synch.h
index 244479f9ae0afe236c12635bbe730cafce881d3d..ad8423891bad260215a77d0274dddfd75c960962 100644 (file)
@@ -21,7 +21,6 @@ void sema_self_test (void);
 /* Lock. */
 struct lock 
   {
-    char name[16];              /* Name (for debugging purposes only). */
     struct thread *holder;      /* Thread holding lock (for debugging). */
     struct semaphore semaphore; /* Binary semaphore controlling access. */
   };