retire PUBLIC, PRIVATE and FORWARD

This commit is contained in:
Ben Gras
2012-03-25 20:25:53 +02:00
parent 6a73e85ad1
commit 7336a67dfe
603 changed files with 5776 additions and 5779 deletions

View File

@@ -20,13 +20,13 @@
struct cprof_tbl_s cprof_tbl[CPROF_TABLE_SIZE_OTHER];
/* Function that returns table size. */
PUBLIC int profile_get_tbl_size(void)
int profile_get_tbl_size(void)
{
return CPROF_TABLE_SIZE_OTHER;
}
/* Function that returns on which execution of procentry to announce. */
PUBLIC int profile_get_announce(void)
int profile_get_announce(void)
{
return CPROF_ANNOUNCE_OTHER;
}
@@ -35,7 +35,7 @@ PUBLIC int profile_get_announce(void)
* Userspace processes announce their control struct and table locations
* to the kernel through this function.
*/
PUBLIC void profile_register(ctl_ptr, tbl_ptr)
void profile_register(ctl_ptr, tbl_ptr)
void *ctl_ptr;
void *tbl_ptr;
{