Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.3-rc2 11 lines 273 B view raw
1#ifndef __QCOM_SMEM_H__ 2#define __QCOM_SMEM_H__ 3 4#define QCOM_SMEM_HOST_ANY -1 5 6int qcom_smem_alloc(unsigned host, unsigned item, size_t size); 7int qcom_smem_get(unsigned host, unsigned item, void **ptr, size_t *size); 8 9int qcom_smem_get_free_space(unsigned host); 10 11#endif