Skip to content

Commit 38a520d

Browse files
committed
Remove accidental change
1 parent 30d1f12 commit 38a520d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,17 @@ static void ioctl_table_fill() {
342342
_(SOUND_PCM_WRITE_CHANNELS, WRITE, sizeof(int));
343343
_(SOUND_PCM_WRITE_FILTER, WRITE, sizeof(int));
344344
_(TCFLSH, NONE, 0);
345+
#if SANITIZER_GLIBC
346+
_(TCGETA, WRITE, struct_termio_sz);
347+
#endif
345348
_(TCGETS, WRITE, struct_termios_sz);
346349
_(TCSBRK, NONE, 0);
347350
_(TCSBRKP, NONE, 0);
351+
#if SANITIZER_GLIBC
352+
_(TCSETA, READ, struct_termio_sz);
353+
_(TCSETAF, READ, struct_termio_sz);
354+
_(TCSETAW, READ, struct_termio_sz);
355+
#endif
348356
_(TCSETS, READ, struct_termios_sz);
349357
_(TCSETSF, READ, struct_termios_sz);
350358
_(TCSETSW, READ, struct_termios_sz);

0 commit comments

Comments
 (0)