1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Comment out sys_get_number_of_cores() as we're no longer using this.

This commit is contained in:
Jeremy Allison 2012-01-06 14:55:30 -08:00
parent 12bef84607
commit d6950d4ec9
2 changed files with 4 additions and 0 deletions

View File

@ -390,7 +390,9 @@ int sys_lsetxattr (const char *path, const char *name, const void *value, size_t
int sys_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags);
uint32 unix_dev_major(SMB_DEV_T dev);
uint32 unix_dev_minor(SMB_DEV_T dev);
#if 0
int sys_get_number_of_cores(void);
#endif
int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);

View File

@ -2480,6 +2480,7 @@ uint32 unix_dev_minor(SMB_DEV_T dev)
#endif
}
#if 0
/*******************************************************************
Return the number of CPUs.
********************************************************************/
@ -2524,6 +2525,7 @@ int sys_get_number_of_cores(void)
}
return ret;
}
#endif
#if defined(WITH_AIO)