Index: uspace/lib/libc/include/loader/pcb.h
===================================================================
--- uspace/lib/libc/include/loader/pcb.h	(revision f15cb3c4c93269014a096d5c5a41bc60f0808fb9)
+++ uspace/lib/libc/include/loader/pcb.h	(revision a1e28489b631244ed8c8d48d51a78fdd6c502794)
@@ -48,23 +48,23 @@
  */
 typedef struct {
-	/** Program entry point */
+	/** Program entry point. */
 	entry_point_t entry;
 
-	/** Number of command-line arguments */
+	/** Number of command-line arguments. */
 	int argc;
-	/** Command-line arguments */
+	/** Command-line arguments. */
 	char **argv;
 
 	/*
-	 * ELF-specific data
+	 * ELF-specific data.
 	 */
-	/** Pointer to ELF dynamic section of the program */
+	/** Pointer to ELF dynamic section of the program. */
 	void *dynamic;
-	/** Pointer to dynamic section of the runtime linker */
-	void *rtld_dynamic;
-	/** Runtime-linker load bias */
-	uintptr_t rtld_bias;
 } pcb_t;
 
+/**
+ * A pointer to the program control block. Having received the PCB pointer,
+ * the C library startup code stores it here for later use.
+ */
 extern pcb_t *__pcb;
 
