X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flib%2Fkernel%2Fhash.h;h=0dd0c3d9bfe232185d510b6a5ee55e88576a4878;hb=2709a9d54ef1cdfb364ca15d0b92d041c7238a8b;hp=b7eadd31a57a147b7590efb142383bf2ab612e43;hpb=59b3a827580ccbf63ad75526026fd7e8558201c6;p=pintos-anon diff --git a/src/lib/kernel/hash.h b/src/lib/kernel/hash.h index b7eadd3..0dd0c3d 100644 --- a/src/lib/kernel/hash.h +++ b/src/lib/kernel/hash.h @@ -12,11 +12,12 @@ structure that can potentially be in a hash must embed a hash_elem member. All of the hash functions operate on these `hash_elem's. The hash_entry macro allows conversion from a - hash_elem back to a structure object that contains it. + hash_elem back to a structure object that contains it. This + is the same technique used in the linked list implementation. + Refer to lib/kernel/list.h for a detailed explanation. - - -*/ + The FAQ for the VM project contains a detailed example of how + to use the hash table. */ #include #include