define access_data_first
set $ad_curr = g_access_list_head
if $ad_curr == 0
print "(null)"
else
print *(struct access_data*)$ad_curr->data
end
end
document access_data_first
prints the first node in the global access_data list, or "(null)"
end