Home | History | Annotate | Download | only in qemu

Lines Matching refs:delay

362 /* -cpu-delay option value. */
3756 long delay = strtol(android_op_cpu_delay, &end, 0);
3757 if (end == NULL || *end || delay < 0 || delay > 1000 ) {
3758 PANIC("option -cpu-delay must be an integer between 0 and 1000" );
3760 if (delay > 0)
3761 delay = (1000-delay);
3763 qemu_cpu_delay = (int) delay;