powerpc/kprobes: Remove kretprobe_trampoline_holder.
[linux/fpc-iii.git] / drivers / staging / android / Kconfig
blob6480f60ebf6c4a4d2be86ee798d6b304f4b8ceea
1 menu "Android"
3 if ANDROID
5 config ASHMEM
6         bool "Enable the Anonymous Shared Memory Subsystem"
7         default n
8         depends on SHMEM
9         ---help---
10           The ashmem subsystem is a new shared memory allocator, similar to
11           POSIX SHM but with different behavior and sporting a simpler
12           file-based API.
14           It is, in theory, a good memory allocator for low-memory devices,
15           because it can discard shared memory units when under memory pressure.
17 config ANDROID_LOW_MEMORY_KILLER
18         bool "Android Low Memory Killer"
19         ---help---
20           Registers processes to be killed when low memory conditions, this is useful
21           as there is no particular swap space on android.
23           The registered process will kill according to the priorities in android init
24           scripts (/init.rc), and it defines priority values with minimum free memory size
25           for each priority.
27 config SYNC
28         bool "Synchronization framework"
29         default n
30         select ANON_INODES
31         select DMA_SHARED_BUFFER
32         ---help---
33           This option enables the framework for synchronization between multiple
34           drivers.  Sync implementations can take advantage of hardware
35           synchronization built into devices like GPUs.
37 config SW_SYNC
38         bool "Software synchronization objects"
39         default n
40         depends on SYNC
41         depends on SYNC_FILE
42         ---help---
43           A sync object driver that uses a 32bit counter to coordinate
44           synchronization.  Useful when there is no hardware primitive backing
45           the synchronization.
47 source "drivers/staging/android/ion/Kconfig"
49 endif # if ANDROID
51 endmenu