if your reset and set are asychronous then does it matter? 1st, why would you pass a reset and a set signal so close to other? and 2nd if you did yes youd get an unknown(plus a bit of current draw) but after 1 is released itd go into which ever is still being applied (just like any other transition point is considered an unknown.an easy way to eliminate this if you feel you have commands that could send both at same time, is to make 1 more dominant then the other, say the reset pin is the output of your reset signal anded with the setb signal. and if you wished to remove possible small glitches during transitions, synchronize it with a clock.
-Pb
- - - Updated - - -
The adding delay is only usable if yout know when signals are coming, such as a race condition where both are applied near eachother( you can delay 1 to prevent conflict). BUT if you do not know when they are being applied and you add a delay to reset, you could easily get the same situation if there is a reset signal applied followed by a set signal( the reset would be delayed and therefore applied at the same time as the set)